Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #540477

    Hi, how can I reduce the font size of the submenu element on this page? I would like this change to only take effect on this specific page.

    Thanks.

    #540655

    Hey DROR!

    Please add following code to Quick CSS

    .page-id-30582 .av-subnav-menu li a { 
    font-size: 11px;
    }

    Regards,
    Yigit

    • This reply was modified 8 years, 4 months ago by Yigit.
    #540682

    Hi Yigit, how can I make this change only for smaller screens? and also, how can I remove the submenu on tablets and smartphones?

    #540691

    Hey!

    Please change the code to following one

    @media only screen and (max-width: 1300px) {
    .page-id-30582 .av-subnav-menu li a { 
    font-size: 11px;
    }}
    @media only screen and (max-width: 990px) {
    .page-id-30582 .av-subnav-container { 
    display: none  !important; 
    }}

    Regards,
    Yigit

    #540702

    The submenu is still showing on smaller screens.

    #540714

    Hi!

    Sorry, please change the code to following one

    @media only screen and (max-width: 1300px) {
    .page-id-30582 .av-subnav-menu li a { 
    font-size: 11px;
    }}
    @media only screen and (max-width: 990px) {
    .page-id-30582 .av-submenu-container { 
    display: none  !important; 
    }}

    Regards,
    Yigit

    #540763

    Great, thanks.

    I also noticed that the text size in the captions showing on hover over the images is very big on mobile. How can I reduce the font size of the captions on mobile devices?

    #540766

    Hey!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    .avia-tooltip .inner_tooltip {
    font-size: 12px; }
    }

    Regards,
    Yigit

    #540771

    That doesn’t seem to work. the text remains the same size.

    #540779

    Hey!

    Can you please try adding !important rule as following

    @media only screen and (max-width: 767px) {
    .avia-tooltip .inner_tooltip {
    font-size: 12px !important; }
    }

    Cheers!
    Yigit

    #540792

    Still showing the same font size.

    #543185

    Hey!

    I checked Yigit’s code and it should work. Clear browser cache and hard refresh a few times.

    Best regards,
    Andy

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