XF 1.3 How to remove navigation glow?

Xyphien

Active member
Untitled.webp

The glow really makes the text extremely hard to read, how do I go about removing this, and or changing the color of JUST this without changing anything else via CSS. I'm unaware of how to do css too much, and would like to either remove it or change just the glow to a lighter color. Thank you in advance for the help.
 
Go to: Style Properties >> Header and Navigation >> Navigation Tab.

You'll see this:

Code:
display: block;
float: left;
vertical-align: text-bottom;
text-align: center;
outline: 0 none;
text-shadow:0px 1px 1px rgba(0,0,0,0.5);

Remove the 'text-shadow' part.
 
Go to: Style Properties >> Header and Navigation >> Navigation Tab.

You'll see this:

Code:
display: block;
float: left;
vertical-align: text-bottom;
text-align: center;
outline: 0 none;
text-shadow:0px 1px 1px rgba(0,0,0,0.5);

Remove the 'text-shadow' part.
It was select tab, but thank you so much for the help :D I don't know why I never think to look in these sections.
 
Top Bottom