How can I take those buttons out?
2 posters
Take topic buttons out?
HogwartsAcademy- Forumember
- Posts : 474
Reputation : 1
Language : English
- Post n°1
Take topic buttons out?
How can I take those buttons out?
nextlevelgaming- Forumember
- Posts : 989
Reputation : 38
Language : English|CSS|HTML5|javascript|
Location : New York
- Post n°2
Re: Take topic buttons out?
That actually is the CSS selector
- Code:
td.nav{display:none;}
HogwartsAcademy- Forumember
- Posts : 474
Reputation : 1
Language : English
- Post n°3
Re: Take topic buttons out?
So take that out of CSS?
nextlevelgaming- Forumember
- Posts : 989
Reputation : 38
Language : English|CSS|HTML5|javascript|
Location : New York
- Post n°4
Re: Take topic buttons out?
no place it in your CSS add
So that the important overrides the other CSS incase
- Code:
td.nav{display:none !important;}
So that the important overrides the other CSS incase
HogwartsAcademy- Forumember
- Posts : 474
Reputation : 1
Language : English
- Post n°5
Re: Take topic buttons out?
thanks mate!