Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #812543

    Hello,

    I have the following code in my custom css. But I can’t get the main menu font to change size. Is there something wrong here? Thank you!!
    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;
    }

    #812553

    Hey rmavila,
    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;
    }

    Best regards,
    Mike

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