Viewing 6 posts - 31 through 36 (of 36 total)
  • Author
    Posts
  • #718641

    Hi,

    It’s possible to change the background.

    #mobile-advanced .sub-menu li {
        background: red;
    }

    We can add a “+” symbol but it won’t animate or change on click.

    #mobile-advanced > .menu-item-has-children > a:before {
        content: '+';
        position: absolute;
        font-size: 12px;
    }

    Best regards,
    Ismael

    #718972

    Hello Ismael,

    Thanks it works but if I want to change the font size, how can I do that?

    Thanks!

    #720286

    Hi,

    Add the font-size property inside this css declaration.

    #mobile-advanced .sub-menu li {
        background: red;
    }

    Best regards,
    Ismael

    #720320

    Hello Ismael,

    As I understand I have to insert some kind of code into quick css for that to be able to change the font size of the mobile menu?

    Thanks.

    #721136

    Hello Ismael,

    Do you mean, that I need to add a code like this:

    #mobile-advanced .sub-menu li {
    font-size: 25px;
    }

    I tried and it did not give me the bigger font.

    #721804

    Hi,

    I’m sorry but this thread is becoming a bit too long. Please create a new post for new inquiries. And to answer your previous question, yes, you need to add the font-size property.

    #mobile-advanced .sub-menu li {
        font-size: 25px !important;
    }

    The “!important” attribute might help.

    Best regards,
    Ismael

Viewing 6 posts - 31 through 36 (of 36 total)
  • The topic ‘Is it possible to add bullets infront of fullwith submenu items in the mobile’ is closed to new replies.