Forum Replies Created

Viewing 30 posts - 38,101 through 38,130 (of 38,325 total)
  • Author
    Posts
  • in reply to: sticky mobile menu #766751

    Hi andrzejkozdeba,

    Try this css:

    
    @media only screen and (max-width: 767px) {
        .html_header_top.html_header_sticky #header {
        	position: fixed !important;
         }
    }
    

    Let us know if this was helpful.
    Best regards,
    Victoria

    in reply to: Masonry Gallery images lightbox #766748

    Hey Aleksandr,

    Are you still experiencing the problem? I checked in browser emulators, on mobile emulators and on iPhone SE and could not get this behavior, images in lightbox show all the time.

    You could try clearing the cache of you device. Do you get this behavior on other devices?

    Best regards,
    Victoria

    Hey noronha,

    Yes, if 8 images are added to the product, you can adjust their layout via css. It can be don in Enfold > General Styling > Quick Css, but better in enfold/css/custom.css or in a child theme.

    For the reviews you might want to look into product template.

    Let us know if you have any more questions.
    Best regards,
    Victoria

    in reply to: Enfold update 4.7.3 #766740

    Hi MBarkhau,

    You don’t need to buy LayerSlider WP, but there has been an update to that slider, that’s why Wordfence is making a notification. We are working on incorporating LayerSlider update to our theme update. If you are not using LayerSlider, you should not worry about that notice, unless there is an issue with your website. Is there?

    Let us know if you have any more questions.

    Best regards,
    Victoria

    in reply to: Change Portfolio Image on Hover #766738

    Hi Spud,

    Having transparent images overlay each other is not a good idea, as you see with Yoda, but if images are not transparent you could have them overlay and toggle display on hover to show a different one. Some of the images lower got src(unknown).

    The template you might want to look into is includes/loop-portfolio-single.php.

    Let us know if you have any more questions.
    Best regards,
    Victoria

    in reply to: Make top bar sticky on mobile #766733

    Hi,

    Here is the code you can put to enfold/custom.css to help resolve your issues:

    
    .html_header_top.html_header_sticky #header {
        position: fixed !important;
        min-height: 80px;
    }
    
    #advanced_menu_toggle, #advanced_menu_hide {
    	position: absolute !important;
    	right: 0;
    }
    
    #advanced_menu_toggle {
      top: 45%;
    }
    
    #advanced_menu_hide {
      top: 10%;
      right: 10px;
    }
    
    

    Let us know if this was helpful.
    Best regards,
    Victoria

    • This reply was modified 8 years, 10 months ago by Victoria.
    in reply to: Can I put a tab sectio in a widget area? #766715

    Hi bethperkins,

    You saved it as a template and you can load this template on any page you’re building. Or something is not working in this workflow?

    Best regards,
    Victoria

    Hi msh,

    Thank you for reporting the issue to us, I wrote about it to our developers. They will work on it as soon as they can.

    Let us know if you have any more questions.

    Best regards,
    Victoria

    in reply to: Latest Enfold update creates masonry issues. #766706

    Hey envatotastic9,

    Can you give us temporary admin access to your website in the private content box below, so that we can investigate further.

    The link you gave says that the site is closed.

    Best regards,
    Victoria

    in reply to: Masonry Gallery – Is this layout possible #766704

    Hi mrb1972,

    Did you mean something like this? Yes, it’s possible. Have to prepare images of right sizes and you can do it! :)

    Here are the settings.

    Let us know if you have any more questions.

    Best regards,
    Victoria

    in reply to: Images scaling on posts & no images on categories #766701

    Hey kim,

    The images are scaled to fit you content area. For example, if you did not have sidebar, images would be bigger.

    When I clicked on categories in sidebar, I was taken to those pages and images were there.

    If you still want us to take a closer look, you have to give that user you provided, temporary admin access.

    Best regards,
    Victoria

    in reply to: Masonry – Sort option #766698

    Hey alex_0111,

    Yes, there is. Can you give us a link to your website, for us to have context.

    Best regards,
    Victoria

    in reply to: Problem with Mansonry-Gallery #766695

    Hi werksfarbe,

    I have reported this issue to our developers, they will work on solving it as soon as they can.
    Thank you for using Enfold and bringing this issue to our attention.

    Let us know if you have any more questions.

    Best regards,
    Victoria

    in reply to: Post Titles Sizes & Over Feature Image *URGENT* #766686

    Hi MattDalli,

    I could reach your sites today. Have you moved your test server?

    Best regards,
    Victoria

    in reply to: Youtube event listeners not working #766681

    Hi teme,

    I watched the demo, the border color is changing, which means video events are registered and are handled.
    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    in reply to: Bug: WP SEO Local Multi-Location + Layoutbuilter #766672

    Hey Innovie,

    Please refer to this thread to resolve the issue.

    Let us know if this was helpful.
    Best regards,
    Victoria

    in reply to: Adding icons to text widget in left sidebar #766669

    Hi Bkag,

    I could not login with the pre-login. Please check the pre login details.

    Best regards,
    Victoria

    in reply to: Add Google Tags to Track Video clicks and plays #766668

    Hey glozemedia,

    Can you give us a link to a page where the video is embedded please.

    Best regards,
    Victoria

    in reply to: Javascript Code Block always at the bottom #766652

    Hey excel-indianer,

    Can you give us the full code that you’re using or give us temporary admin access to your website in the private content box below, so that we can have a closer look.

    Best regards,
    Victoria

    in reply to: Site header doesn't extend the full width of the site #766637

    Hi 1lizcollins,

    Here is the code that can fix your current request. You can put it in themes/enfold-child/styles.css

    All this mess is due to the fact that two menus are used. And in mobile you can see two icons for 2 menus and Enfold menu looks good out of the box, UebrMenu needs a lot more adjustments. Looks like UberMenu is overkill in this case. You might want to look closer to the menu situation.

    
    
        .responsive.html_boxed.html_header_sticky #header, 
        .responsive.html_boxed.html_header_transparency #header {
            width: 100%;
            margin-left: -5%;
        }
    
        @media screen and (min-width: 960px) {
        #top .ubermenu-responsive-default.ubermenu {
            display: block!important;
            height: 108px ;
            border: none;
        }
    }
    
    #top #header_main > .container,
    #top #header_main > .container .main_menu ul:first-child > li > a, 
    #top #header_main #menu-item-shop .cart_dropdown_link {
        line-height: 82px !important;
    }
    

    Let us know if this was helpful.
    Best regards,
    Victoria

    in reply to: Masonry Filter shows more then selected #766612

    Hi Mike61,

    Masonry shows portfolio categories as filters when you select option “sortable”. In case, when you have only one category to show on the page, better not to make masonry sortable, because it sorts by categories and you are showing only one category, so there is nothing to sort but the other top level categories are shown.

    So you can just go to the page’s masonry and set sortable to “No, do not display sort options”.

    Let us know if you have any more questions.
    Best regards,
    Victoria

    • This reply was modified 8 years, 10 months ago by Victoria.
    in reply to: Sticky header not working #766582

    Hi Richard,

    It’s this rule in tonic analytics

    
    body, #socket {
        -webkit-transform: translateZ(0) !important;
    }
    

    that does not allow position:fixed to work as it should.

    For the sticky header to work it has to be

    
    body, #socket {
        -webkit-transform: none;
    }
    

    but then you have to see if analytics still works like it should.

    Let us know if this was helpful.
    Best regards,
    Victoria

    in reply to: Masonry gallery lightbox title problem #766579

    Hi Freek,

    There is another Javascript error on that page, so that gallery under #work does not even show in Chrome on Mac. Did you have it when avia.js was in enfold theme folder?

    Best regards,
    Victoria

    in reply to: Php7 compatibility error #766371

    Hi justmind,

    These are warnings not errors, and these are just about different codes for line endings.

    These are not critical and they don’t break WordPress or Enfold, or LayerSlider.

    Let us know if you have any more questions.
    Best regards,
    Victoria

    in reply to: Blog posts element not showing categories anymore #766360

    Hi emilbroll,

    I was just trying to help. I understand, I would not be happy too.

    Here is the way to modify your template to get your categories back: in includes/loop-index.php find

    if( strpos($blog_global_style, 'elegant-blog') !== false ) 

    and replace with

    if( strpos($blog_global_style, 'elegant-blog') !== false  || empty($blog_global_style) )

    You will still need to apply the old css rules, you had before.
    Let us know if this was helpful.
    Best regards,
    Victoria

    in reply to: Individual header images for single pages #766351

    Hey JGastmann,

    Is this what you’re trying to achieve?

    For this I used full screen slider with one image and set the height in custom.css:

    
    #fullscreen_slider_0 .avia-slideshow-inner li {
      height: 250px;
    }
    

    You can also specify smaller height for mobile screens if you like.

    Let us know if this was helpful.

    Best regards,
    Victoria

    in reply to: Rotate Headline #766339

    Hi TR0PEN,

    Great job! :)

    Let us know if you have any more questions.
    Best regards,
    Victoria

    in reply to: Image resolution problem with Layer Slider WP #766336

    Hi octaviosalles,

    Here are two great articles on images and WordPress, you might find some insights there

    https://mythemeshop.com/blog/how-to-prevent-wordpress-from-generating-image-sizes/

    and http://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    Let us know if this was helpful.
    Best regards,
    Victoria

    in reply to: masonry thumbnails not resizing #766325

    Hi fprati,

    Yes, resizing takes the aspect ration into account, so in order to get the same size thumbs, images have to have same dimensions or they will be cropped.

    There are plenty of plugins that allow you to work with your images as you wish. Here is a good article about it.

    Let us know if you have any more questions.
    Best regards,
    Victoria

    in reply to: Description and pagination at the bottom #766313

    Hi roderickvs,

    Of course, that is possible :)

    Please add code in the functions.php file.

    
    add_action('wp_footer', 'ava_new_custom_script');
    function ava_new_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.term-description').insertAfter('.products');
    	}
    
    	$(window).load(function() {
    		a();
    	});
    })(jQuery);
    </script>
    <?php
    }
    

    Let us know if you have any more questions.
    Best regards,
    Victoria

Viewing 30 posts - 38,101 through 38,130 (of 38,325 total)