Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: Zakees_ on October 27, 2019, 10:47:57 PM

Title: Change menu color
Post by: Zakees_ on October 27, 2019, 10:47:57 PM
I want to change menu text color.
Actually It's hard to see text with this background.

What should I change to make text more visible?
(https://i.imgur.com/6JCD6PB.png)
Title: Re: Change menu color
Post by: Shambles on October 28, 2019, 07:19:20 AM
You could use your browser's inspection tools to discover the name and location of the styling elements that require changing.

Which theme is that?
Title: Re: Change menu color
Post by: Sir Osis of Liver on October 28, 2019, 12:02:08 PM
Varies with theme, but look for something like this -

index.css



.dropmenu a
{
display: block;
color: #000;
text-decoration: none;
}


Title: Re: Change menu color
Post by: Zakees_ on October 28, 2019, 02:04:01 PM
It's Horizon theme.
Title: Re: Change menu color
Post by: Zakees_ on October 28, 2019, 04:23:57 PM
I solved it by myself. Thanks both for your help!