Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3225944
vertical mobile navigation amp background color
Closed

Comments

  • progettofl2021 started the conversation

    where i can change the background color of vertical mobile navigation AMP background color???

  •  2,486
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Penci AMP → Custom CSS then add the following custom CSS code:

    .mobile-sidebar {
        background-color: #f1f1f1;
    }

    Change #f1f1f1 to the color you want to show.

    Regards,
    PenciDesign.



  • progettofl2021 replied

    thx and for menu item color of vertical mobile navigation AMP?

  •  2,486
    PenciDesign replied

    Hi,

    Please add the following CSS code to your site:

    .mobile-sidebar .primary-menu-mobile li a {
        color: #fff;
    }
    .mobile-sidebar .primary-menu-mobile li a:hover {
        color: #f1f1f1;
    }

    Regards,
    PenciDesign.



  • progettofl2021 replied

    thx for current category menu color ?

    Attached files:  current category.png

  •  2,486
    PenciDesign replied

    Hi,

    Please add this CSS code to your site:

    .mobile-sidebar .primary-menu-mobile li.current-menu-item a {
        color: #fff;
    }

    Regards,
    PenciDesign.