Forum Replies Created

Viewing 30 posts - 3,661 through 3,690 (of 8,514 total)
  • Author
    Posts
  • in reply to: Critital Responsive Issue on iPad #216799

    Hi neubertj!

    What is the actual issue that is being reported on the iPad and what version of iOS is the iPad 2 running as well.

    Regards,
    Devin

    in reply to: customize video size and location #216740

    Hi Blacksprout!

    The video embeds use the WordPress oembed code so the theme doesn’t do anything to your video. What this means is that it will show however it is set to show by that video’s settings.

    Best regards,
    Devin

    in reply to: Layerslider Version 4.6.5 to 5.0 #216694

    Hi!

    Kriesi plans to update it either on this next update this week or the update after. It depends on if this past release causes any issues or conflicts with the theme.

    You are of course always free to not use the included version and purchase a stand alone license.

    Regards,
    Devin

    in reply to: changing default grid width #216691

    Hi valentin!

    You would change all of the widths that set the max width and base width of the containers and then any grid elements which have a specific width.

    For best compatibility you would want to do it in a new media query so that it only effected viewports which can view that large of a base width.

    Cheers!
    Devin

    in reply to: New site setup #216688

    Hi creativeyes!

    Unfortunately that isn’t something we can assist with. You can try the WordPress forums or look into a freelance developer from somewhere like Micorlancer or Codeable which could assist you in planning out a solution as well.

    Regards,
    Devin

    Hi!

    This is the correct and intended effect. What the image size selection does is let you choose what image size gets loaded in to that container. It will always be 2/3 the width of the content area because its in a 2/3 column.

    If you want to change the size the image is viewed on the page then you would need to change its container size.

    Best regards,
    Devin

    in reply to: How to change form action URL? #216682

    Hey Eric!

    As far as I know this isn’t possible with the current form builder. You would need to use a third party plugin with a different form builder to have that kind of option.

    Best regards,
    Devin

    in reply to: A bulk CSS surprise #216681

    Hey Cum_Vincere!

    Can we see your site live? That css should by default actually already be saved to a custom created file in your uploads folder.

    Regards,
    Devin

    in reply to: How to Increase the heading font size on Blog Post Widgets. #216680

    Hey gentlemansgazette!

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .avia-content-slider .slide-entry-title {
        font-size: 23px;
    }

    You can adjust it as needed.

    If you want it to only effect the home page then you can use:

    
    #top.home .avia-content-slider .slide-entry-title {
        font-size: 23px;
    }

    Best regards,
    Devin

    in reply to: style.css? #216677

    Hey Kristofer!

    You’ll never need or want to modify the theme css files. You can add your own to either the Themes Styling tab in the Quick CSS field or the custom.css file in the css folder of the theme files.

    You can also create a child theme and edit the style.css in that child theme which is typically the best option: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Regards,
    Devin

    in reply to: Problems with loading Avia Layout Builder on Posts #216639

    Hi!

    The avia layout builder is not enabled on posts. Post content is not suited for how the builder creates the layouts and so Kriesi will probably never enable it or bugfix it to work on actual posts.

    Best regards,
    Devin

    in reply to: problem with fullscreen slider #216637

    Hey!

    The two image links aren’t working but from your description its because the resolutions are different. So the display of the content is different between the two devices.

    Cheers!
    Devin

    in reply to: Responsivity lost #216635

    Hey!

    If you are using a child theme then it would be your child themes functions.php file.

    Regards,
    Devin

    in reply to: Product image size #216633

    You can change the grid wrappers for the image and summary in config-woocommerce>config.php. Look for:

    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
    add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    function avia_add_image_div()
    {
    	echo "<div class='four units single-product-main-image alpha'>";
    }
    
    function avia_close_image_div()
    {
    	global $avia_config;
    	$avia_config['currently_viewing'] = "shop_single";
    	get_sidebar();
    	echo "</div>";
    }
    
    #
    # wrap single product summary in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25);
    add_action( 'woocommerce_after_single_product_summary',  'avia_close_div', 3);
    function avia_add_summary_div()
    {
    	echo "<div class='eight units single-product-summary'>";
    }

    The div class wrapper is what gives the content its width within the layout in units that equal a total of twelve. So you can change the image from being four units and instead make it six but you would then also have to change the summary unit class name from eight to six as well so the total still equals twelve.

    in reply to: recommendation for best Map Plugin for Enfold #216567

    Hi!

    You can set a telephone number to use the tel: scheme to make it a link so that people can call it. Ex:
    <a href="tel:1-408-555-5555">1-408-555-5555</a>

    If you have any other issues please make a new topic and we’ll address them there.

    Regards,
    Devin

    in reply to: fixed background image and width #216566

    Your child theme style.css has a missing bracket so all the css after it is not actually being executed. You can, in the future, inspect your color section with dev tools in the browser and if the css isn’t showing as effecting the element then the css file has an issue.

    In your case, look for this block:

    /*fix header dissapearing on ipad */
    @media only screen and (max-width: 1024px) {
    /* Add your Mobile Styles here */
    h1 {
    font-size: 24px;
    padding-right:30px;
    }
    

    It needs to have a closing bracket on the media query.

    in reply to: Shortcode is not working #216560

    Hi @tajenli,

    The LayerSlider element can only be a full width element. So it isn’t possible right now to put it into a column element. It is unfortunately a limitation of the themes implementation of the LayerSlider so that it will work within the avia layout builder.

    Regards,
    Devin

    in reply to: Advanced filtering for portfolio items #216558

    Hey Fiorilla!

    Unfortunately that isn’t currently possible with the way the items are filtered.

    Regards,
    Devin

    in reply to: javascript JSON #216555

    Hey!

    It looks like the script is in fact loading but its not executing because of an error. Have you tried it on a regular html site/page and verified it works there? You can also try going through the regular WordPress visual editor and verify it works there before adding to a text element in the avia layout builder.

    Best regards,
    Devin

    in reply to: contact form sending but no confirmation #216552

    Hey ShortieD!

    What is the url for the page with the form so we can take a look at the issue live.

    Regards,
    Devin

    in reply to: YouTube Plugin Layout Problem #216551

    It isn’t something that has ever come up and while it seems handy I can’t see a real need for it since it would be better in almost all cases to set it up manually. Even if the user is an extremely active partner they would be putting up a few videos a day and the screenshots/featured image would be the only thing that would need to be created. Then its just adding a new post to WordPress with that featured image and a link to the video.

    You can add the idea for support of a specific plugin to the feature request topic however.

    in reply to: adding an e-commerce site #216549

    Hey!

    The theme only has built in support for WooCommerce.

    Regards,
    Devin

    in reply to: Add space above Advanced Layerslider via CSS #216503

    Hi aribann!

    We’ll need a bit more detail and a live example to see whats happening or what you are trying to do.

    Best regards,
    Devin

    in reply to: Which sidebar goes where? #216499

    Hi!

    Can you either take a screenshot of your avia layout builder layout or provide a temporary admin login so we can take a look at exactly what you have live?

    You can set your response as private here on the forums and only we will be able to see it.

    Regards,
    Devin

    in reply to: Close language switcher on iPad #216495

    Hey!

    I’m still getting a timeout when trying to access the site. Can you double check it again and I’ll see if we can figure out the ipad issue.

    Regards,
    Devin

    in reply to: Any way to make Reviews scroll? #216118

    Hey!

    No, not for the WooCommerce output. You could try searching for an extension that modifies WooCommerce reviews or even paging.

    If its a must have feature then a freelance developer from somewhere like Microlancer or Codeable can help you write a plugin or functions to modify WooCommerce for you but still keep it upgrade safe.

    Cheers!
    Devin

    in reply to: New custom font #216111

    Hey!

    Try using the direct url to your fonts instead of relative. So the url will point to the actual url where your fonts are on your server.

    The theme doesn’t really have any interaction in this case and its just a matter of adding in the @font-face correctly.

    Best regards,
    Devin

    in reply to: javascript JSON #216101

    Hey Roman!

    You’ll need to use a plugin that will let you insert javascript appropriately into pages as the WordPress editor will typically mess with it.

    Regards,
    Devin

    in reply to: "Down" arrow for theme? Especially for FullScreen slider #216086

    Hi foreigner!

    The intention is to use the links on buttons to direct the user down to the anchors of each color section. You can add the idea of a down arrow to the feature request topic however as it would need to be added in as a full fledged feature to have the same smooth integration:https://kriesi.at/support/topic/enfold-feature-requests/

    Cheers!
    Devin

    in reply to: Responsiveness of advanced sliders #216052

    Hi!

    That kind of functionality is just not available in either the plugin or the theme.

    You can use media queries to hide content on desktop and then show it on mobile and the opposite but it will still load into the page.

    Best regards,
    Devin

Viewing 30 posts - 3,661 through 3,690 (of 8,514 total)