Page 1 of 1

How to edit the navigation menu? (Transparency/Massively)

Posted: Mon Oct 09, 2023 2:06 am
by ashrafakader
Hello,
Unless I change the image or the theme, nav menu is too transparent and its text is very hardly readable.. I want to set its transparency OR text color.

I opened main.css and changed

Code: Select all

background: #ffffff;
to

Code: Select all

background-color: rgba(0,0,0,0.3);
, but this doesn`t work.

Re: How to edit the navigation menu? (Transparency/Massively)

Posted: Thu Oct 12, 2023 10:46 pm
by Edi
The property background of which selector?

Re: How to edit the navigation menu? (Transparency/Massively)

Posted: Mon Nov 27, 2023 6:49 pm
by Romeo21
Hope that this will be helpful.
/* Set the background color of the navigation menu with 30% transparency */
.nav-menu {
background-color: rgba(255, 255, 255, 0.7);
}

/* Set the text color of the navigation menu items */
.nav-menu a {
color: #000; /* Set the color to black */
}