Home Forums Basel support forum How to Make the Mobile Sidenav White Background and Text Black ?

How to Make the Mobile Sidenav White Background and Text Black ?

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

    rakii143
    Participant

    I want to make the total mobile sidebar background color to be white ( including the search box and search results wrapper ) and i want to make the text black.

    #94405

    Hello,

    It is possible to do with custom CSS:

    body .mobile-nav {
        background-color: white;
    }
    body .mobile-nav ul li a:active {
        background-color: white;
    }
    body .mobile-nav .searchform button {
        color: black;
    }
    body .mobile-nav .searchform  {
        color: black;
    	    border: 1px solid black;
    }
    body .mobile-nav .searchform input[type=text] {
        color: black;
    	  border: 1px solid black;
    }
    body .mobile-nav ul li a {
    	  color: black;
    }
    body .mobile-nav ul li a:hover {
    	  color: black;
    }

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)