HTML web page looks very buggy and I don't understand how to edit this tab changer

The colour is really off and it isn;t inline with the white thing. Can i not just make the tab changer be the white text? Screenshot 2020-10-12 at 00.54.45

To make it inline you could use

display:inline;

or

display:inline-block;

To make it white colored you could put in your css:

color:white;
1 Like

add :visited to your selector that changes the tab changer color

1 Like

your code could be like

a:visited {
color:white;
}

I though the OP said that he wanted it white forever

Hmmm, it might be better to use inherit rather than a definite color for a tags so that it inherits the color defined for the parent div - might be useful when you have multiple a tags and you don’t want all of them to have the same colors

The probably isn’t a parent div, but inheriting would work just like @khalby786 said.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.