Forum Replies Created

Viewing 30 posts - 45,451 through 45,480 (of 66,126 total)
  • Author
    Posts
  • in reply to: Custom CSS Help #506797

    Hey!

    Please review the documentation and download the child theme files: http://kriesi.at/documentation/enfold/using-a-child-theme/

    I checked the Appearance > Themes panel but there is no child theme there.

    Cheers!
    Ismael

    in reply to: Enfold Photography Portfolio – Issue after Theme update #506796

    Hi!

    Try to add this in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    p.lgs, .sdinfo { display: none; }
    }

    Regards,
    Ismael

    in reply to: Video not working #506795

    Hi!

    Can you please post the whole error? What file is it referring to? Replace the code with this:

    <?php if(preg_match('/(?i)msie [8-11]/',$_SERVER['HTTP_USER_AGENT'])) { echo '<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>'; } ?>
    

    Don’t forget to remove browser cache.

    Cheers!
    Ismael

    in reply to: problems after last theme update #506794

    Hi!

    I checked the other languages in the site and it looks OK. The images are there including the layer sliders and the background. It must be a cache issue.

    Regards,
    Ismael

    Hi!

    Please try to add this in the functions.php file:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    	}, 1500);
    	
    	$(window).load(function () {
    		setTimeout(function() {
    			clearInterval(int);
    		}, 1000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Add Social Share Icons to Title Container #506789

    Hi!

    Try to use this:

    /* Enable Social Share Buttons */
    add_filter('avf_title_args', 'avia_add_social_toolbar_template_builder', 10, 2);
    function avia_add_social_toolbar_template_builder($args, $id)
    {
    	ob_start();
    	avia_social_share_links(array(), false);
    	$social = ob_get_clean();
    	$args['additions'] .= $social;
    	return $args;
    }

    Add this in the Quick CSS field:

    .title_container .av-share-box {
        width: 30%;
    }

    Best regards,
    Ismael

    in reply to: Broken tables #506787

    Hi!

    Try to remove any “greater than” or “less than” symbol in the page. Example: “with <5 m tall”

    Replace it with the html entity code: http://www.w3schools.com/html/html_entities.asp

    Best regards,
    Ismael

    in reply to: Forcing Arrows on the easy slider #506786

    Hi!

    If you want to force the arrows to display, modify config-templatebuilder > avia-shortcodes > slideshow.php. Look for this code around line 532:

    if($this->slide_count > 1)
    			{
    				$html .= $this->slide_navigation_arrows();
    				$html .= $this->slide_navigation_dots();
    			}

    .. replace it with:

    if($this->slide_count > 0)
    			{
    				$html .= $this->slide_navigation_arrows();
    				$html .= $this->slide_navigation_dots();
    			}
    			

    We replace “1” with “0”.

    Cheers!
    Ismael

    in reply to: Removing date/time (other META info) from social shares #506783

    Hi!

    I’m pretty sure you can’t find the page meta info on a template file inside the theme, try to check the page.php or includes > loop-page.php file. You can perhaps modify the database, look for the pages in wp_posts table and remove the meta infos. If you’re not familiar with wp databases, this is going to be impossible and it might break the page structure. Have you tried asking the linkedin community regarding this? I’m not sure how they fetch the url data. I’ll ask the rest of the support team to check it.

    Cheers!
    Ismael

    in reply to: Reduce height of full width masonry #506781

    Hi!

    Yes, please give us the login details and a screenshot of what you’re trying to adjust. Use imgur or dropbox. The solution on the previous link will decrease the thumbnail size but it will not affect the actual height of the masonry items. Try to use this in the Quick CSS field instead:

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 60%;
    }

    Best regards,
    Ismael

    in reply to: Mobile issue with a few elements #506780

    Hey!

    Alright. Please replace the code with this:

    @media only screen and (max-width: 767px) {
    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
        line-height: 3em;
    }
    }

    Did you add a negative margin to those columns? Try to add this inside the css media query above:

    .flex_column.av_one_half {
        margin-bottom: 20px !important;
    }

    Regards,
    Ismael

    in reply to: Formatting shop issues #506779

    Hi inchmasterflex!

    Thank you for using Enfold.

    1.) You have this css code in the Quick CSS field:

    .current-menu-item>a>.avia-menu-text {
        color: white !important;
    }

    .. replace that with:

    .current-menu-item>li>a>.avia-menu-text {
        color: white !important;
    }

    2.) You can only display the banner on the shop overview page and the product category pages.

    3.) Use this css code:

    .current_page_parent > a {
        color: red !important;
    }

    4.) Try this one:

    ul[data-success="was added to the cart"] .cart_dropdown_first a {
        background-color: black;
        color: white !important;
    }

    If possible, please create a single thread for each inquiries so that we can focus on your question and it will be easier for other users searching for the same solution.

    Regards,
    Ismael

    in reply to: Colour section not taking CSS into account from section 5 on #506778

    Hey!

    What happens when you place the columns inside a color section element?

    Best regards,
    Ismael

    in reply to: Product Sorting #506303

    Hi!

    What is the final code that you use? Might help others who want to do the same thing.

    Regards,
    Ismael

    in reply to: Problem with the blog showing #506301

    Hey!

    You also have a category called “News” so they have the same slug. We modified the “News” category slug for you: http://www.garaggge.com/news/

    Best regards,
    Ismael

    Hey!

    1.) Please remove browser cache or hard refresh the page after you add the code suggested above. You can also try this:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
        max-height: 50px !important;
    }
    }

    Adjust the max height value if necessary.

    2.) Add this code inside the media query above.

    #socket .copyright {
        float: none;
    }

    End code should be:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
        max-height: 50px !important;
    }
    
    #socket .copyright {
        float: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Product Sorting #506296

    Hey!

    How did you sort it? Mind sharing the fix? :)

    Cheers!
    Ismael

    in reply to: Avia Editor Problems still Present #506293

    Hey!


    @SmoovP
    : Glad the advance layout builder is now working on your installation. It’s probably a cache issue.


    @mbroooshkey
    : Aside from the ftp login credentials, we also need to access the dashboard to test the advance layout builder. Please post those details here as well. I tested some of the login credentials you provided on the previous post but they are not working.

    Also, try to check the Settings > General panel. Make sure that the url in the WordPress Address (URL) and the Site Address (URL) fields are completely the same.

    Best regards,
    Ismael

    in reply to: Image Cropping Issues #506289

    Hey!

    For portfolio items, try this:

    .postid-593 .av-masonry-image-container {
    background-size: 100% 100%;
    }

    Best regards,
    Ismael

    in reply to: Show category image and description on all paginated pages #506287

    Hey!

    You can enable the theme’s shop banner. Go to Enfold > Shop Options panel then enable the “Enable Banner for product category pages”. Edit the product category, look for the Enfold Category Styling settings then set it to the second option.

    Cheers!
    Ismael

    in reply to: Mobile issue with a few elements #506282

    Hi!

    It is because of this css modification:

    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
        color: #4ea3bd;
        font-size: 35px;
        font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: lighter;
        text-transform: uppercase;
    }

    Try to add the line-height property:

    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
        color: #4ea3bd;
        font-size: 35px;
        font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: lighter;
        text-transform: uppercase;
        line-height: 3em;
    }

    Regards,
    Ismael

    in reply to: How to make the blog post style like other pages? #506279

    Hi maschera!

    Thank you for using Enfold.

    I’m sorry but it’s not possible to add full width elements in the post unless you use the advance layout builder. If you don’t want to recreate the layout of a certain post or page, you can save it as a template (top right of the advance layout builder). You can then apply this template in other post then change the content accordingly.

    Cheers!
    Ismael

    in reply to: How to leave a reply to comments on a blog post #506277

    Hey!

    The css codes are actually working. Please remove browser cache or hard refresh the page.

    Best regards,
    Ismael

    in reply to: black border #506272

    Hi!

    I’m sure you’re familiar with the custom css class field now. Please add a custom css class attribute to that image then apply the css properties above. :)

    Best regards,
    Ismael

    in reply to: Contactform translate problem #506271

    Hi!

    Can you please provide a link to the actual page with the contact form? We would like to check it.

    Best regards,
    Ismael

    in reply to: show number of posts wrapped by #506269

    Hi!

    We added the code for you. You can find it right after the copyright field: http://erodog.com/

    Regards,
    Ismael

    in reply to: Sorting #506265

    Hey!

    If you want to add a sort feature on the masonry element, edit the posts or portfolio items then add categories. These categories will be automatically added as sort items.

    Best regards,
    Ismael

    in reply to: Can't embed video #506263

    Hey!

    Note that bumping or answering your own thread will push it at the end of the queue and we won’t be able to answer it immediately. We updated the page for you. The video should automatically play now. Please remove browser then reload the page: https://sheffield-hypnosis.co.uk/

    Best regards,
    Ismael

    in reply to: iPad drop down menu won't "tap-off" #506243

    Hey!

    Edit the Fullwidth Sub Menu element then set the Mobile Menu Display to display a button instead of the default menu layout. I suggested this again because it will create a mobile button, when tap, list all the menu items without a sub menu.

    Cheers!
    Ismael

    in reply to: newsletter widget area #506240

    Hey!

    Please edit the text block, add a custom css class attribute then apply these css properties:

    position: relative;
    margin-top: -85px;
    margin-left: 80px;
    

    For the image, try to replace the code with this:

    .newsletter-image {
        bottom: 0px !important;
        left: -60%;
    }

    Regards,
    Ismael

Viewing 30 posts - 45,451 through 45,480 (of 66,126 total)