Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #812503

    Hello,

    I have added the custom css in general styling
    #avia-menu .avia-menu-text {
    font-size: 20px !important;
    }

    I have added a change element for main menu links in advanced styling

    and both do not work.

    Please help.
    Thank you.

    #812511

    Hey rmavila,
    Your code worked for me in a test, do you have other code in your css, perhaps you have a missing curly bracket?
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #812513

    Thanks Mike,

    See below:

    • This reply was modified 7 years, 5 months ago by rmavila.
    #812536

    This is what I have in custom css. Is this wrong? I really have to get this fixed.
    #header{
    opacity: 0.5;
    }
    @media only screen and (max-width: 480px) {
    h1 { font-size: 25px !important; }
    #header_meta .container {
    max-width: 100%!important;
    width: 100%!important;
    }
    #avia-menu .avia-menu-text {
    font-size: 20px !important;
    }

    #812545

    Hi,
    Yes it says that it will not show above 480px

    Best regards,
    Mike

    • This reply was modified 7 years, 5 months ago by Mike.
    #812549

    Here is the code:
    This is what I have in custom css. Is this wrong? I really have to get this fixed.
    #header{
    opacity: 0.5;
    }
    @media only screen and (max-width: 480px) {
    h1 { font-size: 25px !important; }
    #header_meta .container {
    max-width: 100%!important;
    width: 100%!important;
    }
    #avia-menu .avia-menu-text {
    font-size: 20px !important;
    }

    #812552

    Hi,
    Try:

    #header{
    opacity: 0.5;
    }
    @media only screen and (max-width: 480px) {
    h1 { font-size: 25px !important; }
    #header_meta .container {
    max-width: 100%!important;
    width: 100%!important;
    }}
    #avia-menu .avia-menu-text {
    font-size: 20px !important;
    }

    If you are still having trouble please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #812559

    That did it Mike!! Thank you so much.

    Quick question please – it seems that although the main menu font is white – it seems to be darker when I add a gradient bkground image. It seems that the opacity layer is layered on top of the navigation so I shows darker and so does the logo.

    Any code to fix this?

    Thank you so much for writing to me on the weekend!!

    #812563

    Hi,
    The last number in your gradient color code is the opacity layer, so if it is 0.5 change it to 0
    or show us the code and we will try to help :)

    Best regards,
    Mike

    #812570

    Yeah – changing it to 0 makes the main menu nav disappear all together –

    #header{
    opacity: 0.2;
    }
    When I up the op to 2 – it looks like this. So the main link nav must be behind the bkgrnd color – correct? You can hardly see the main menu nav.

    And hard to read.

    • This reply was modified 7 years, 5 months ago by rmavila.
    #812665

    Hi,
    I see, it’s when you hover on your menu, the text is lighter, try this:

    #top .av_header_transparency .main_menu ul:first-child > li > a:hover {opacity: 1!important; }

    I also see that when you hover over your sub-menu the text and background is white, so this makes your text your shade of blue:

    #top .header_color .main_menu .menu ul li>a:hover {color: #91dce6!important; }

    Best regards,
    Mike

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