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

    hello,

    i want that the menü-items get another font-size between the device-size of 1100 px and 980 px. I use the following css-code:

    @media only screen and (max-width: 1100px) and (min-width: 980px) {
    .header_color div {font-size: 87% !important;}

    But it does not work… can you help me with this?

    #670637

    Hey Chris_85,

    Please try this instead:

    @media only screen and (min-width: 980px) and (max-width: 1100px) {
    #avia-menu li a .avia-menu-text {
      font-size:16px !important;
    }
    }

    Best regards,
    Rikard

    • This reply was modified 8 years, 3 months ago by Rikard.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.