You can log back in here.
So I'm trying to get rid of the navigation text in my profile, and I used this code in my style tags:
{ color: transparent;
but it doesn't seem to change anything. If anyone could help me fix the coding I'd appreciate it.
You want to get rid of the text but not the links or the whole thing?
{visibility: hidden;} a {visibility: visible;} Makes only the links visible.
{visibility: hidden;} a {visibility: visible;}
{display: none;} No navigation at all.
{display: none;}
You should check this board for more details.
Thanks so much, the second code worked. ^^