Tagged: 

Viewing 30 posts - 1 through 30 (of 30 total)
  • Author
    Posts
  • #1063129

    Hello,

    Top Menu all tabs are not showing from 768px to 1170px

    After using this code it’s happening…

    @media only screen and (max-width: 1170px) {
      nav.main_menu {
        display: block !important;
      }
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }

    I’m using this code because menus were overlapping on logo.

    #1064394

    Hey Sovik,
    Sorry for the late reply, please try this css instead of the above:

    @media only screen and (max-width: 1170px) and (min-width: 768px) {
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: none !important; 
      }
    
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
          display: block !important; 
      }
    }

    Best regards,
    Mike

    #1064579
    This reply has been marked as private.
    #1064586

    Hi,
    Glad to hear, go ahead and explain the issue here :)

    Best regards,
    Mike

    #1064763
    This reply has been marked as private.
    #1064797

    Hi,
    Sorry, your links do not seem to go to the same page in your screenshot, the linked pages show the text in black:
    2019-02-08-161230
    To reverse the options, so the highest number is on top, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function reverse_options(){
      ?>
      <script>
    (function($){
    $(document).ready(function(){
    var $select = $('select');
    var options = $select.find('option:nth-child(n+2)');
    
    // turn the nodelist into an array and reverse it
    options = [].slice.call(options).reverse();
    
    // add each option back
    $.each(options, function (i, el) {
      $select.append($(el));
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'reverse_options');

    Best regards,
    Mike

    #1064804
    This reply has been marked as private.
    #1064814

    Hi,
    Ok, then don’t add the code :)
    But I still see the numbers in black, where do you see the numbers as white?
    Do you still see this?
    Please see the screenshots in Private Content area.

    Best regards,
    Mike

    #1066492
    This reply has been marked as private.
    #1066773

    Hi,
    Sorry about that, I followed your link and see that the dropdown background color is black with white text, I assume this was to fix the white text issue. To make the text black, add this css:

    
    #top .main_color select {
        color: #000 !important; 
    }

    As for adding a text field after variation choice, please try a plugin such as: Woocommerce Custom Fields For Variation

    Best regards,
    Mike

    #1067718
    This reply has been marked as private.
    #1067775

    Hi,
    Please see the screenshot in Private Content area. Are these the titles that seem hazy?

    Best regards,
    Mike

    #1067777
    This reply has been marked as private.
    #1067909

    Hi,
    Yes

    Best regards,
    Mike

    #1067911
    This reply has been marked as private.
    #1068071

    Hi,
    Thanks, I took a look and while it’s a little hard to see, I think I do. I looked through all of the css on your page and I don’t see anything that could cause this. I also researched this but all I could find is “text-rendering”, it’s really not used much, but you could try it.

    h2.woocommerce-loop-product__title {
        text-rendering: optimizeLegibility !important; 
    }

    or you could try this:

    h2.woocommerce-loop-product__title {
        font-weight: 600 !important; 
    }

    Best regards,
    Mike

    #1068281
    This reply has been marked as private.
    #1068430

    Hi sovik_rc,

    So is it working on your end now or still not?

    Best regards,
    Victoria

    #1068772
    This reply has been marked as private.
    #1069102

    Hi sovik_rc,

    https://cl.ly/73a75c17cd6f Here is how it looks in Chrome on a Mac.

    There seems to have been an issue in Safari
    https://github.com/necolas/normalize.css/issues/716

    Also, you have a lot of semicolumns missing in your custom css. Please check.

    Best regards,
    Victoria

    #1069275

    Hi,

    Is there any way to fix it ?

    #1069569

    Hi sovik_rc,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .avia-safari #top .avia-content-slider-inner .slide-entry-wrap {
        -webkit-perspective: 0 !important;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1069593
    This reply has been marked as private.
    #1070885

    Hi sovik_rc,

    Best regards,
    Victoria

    #1072314
    This reply has been marked as private.
    #1073340

    Hi sovik_rc,

    You can jsut paste your css form Quick css here
    https://jigsaw.w3.org/css-validator/#validate_by_input and see if there are any errors

    Best regards,
    Victoria

    #1075859

    Hi sorry for the late response. I found some errors

    Screenshot: https://i.imgur.com/FckGhss.jpg

    #1077254

    Hi,

    You have to remove the comma from these selectors.

    .main_color span,

    #top .main_color .price,{

    And remove this css property.

    font-style: bold;
    

    Best regards,
    Ismael

    #1077426
    This reply has been marked as private.
    #1079788

    Hi,

    I have removed commas and also removed that line from quickcss but product names are still showing same, (from my end it’s showing hazy).

    This thread might help with that issue.

    // https://kriesi.at/support/topic/blurry-text-on-chrome

    One of the users suggested a solution.

    // https://kriesi.at/support/topic/blurry-text-on-chrome/#post-1068282

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 30 total)
  • You must be logged in to reply to this topic.