Lines under username- How to remove?

remember said:
if u remove it...all underlines will be removed...is it ok...??
and does ur server has soshin ?(hardened php )

Ideally I would like to not do it that way. It's only this underline that is making the forum look untidy, since it overlaps the txt underneath the username.

Is there no way just to remove ONLY this underline? If not, I guess I'll just need to do what you say and have no underlines at all on the forums.

I don't know if my server has soshin (Hardened php). Can I find out by looking at my CpanelX? If not, I will email my hosting provider and ask him.

Thanks
 
Run phpinfo in the Maintenance and search for suhosin on the results page. If it installed you will see a block of parameters under that title.
 
bluescorpion said:
Run phpinfo in the Maintenance and search for suhosin on the results page. If it installed you will see a block of parameters under that title.

I ran phpinfo but there is no 'suhosin' in the results.
 
The way I removed the underlines of usernames was by editing the styles Main CSS and it took it immediately off.
 
txbritt said:
The way I removed the underlines of usernames was by editing the styles Main CSS and it took it immediately off.

There's only 1 thing in the CSS that has 'Underline' in it and I tried changing that to 'none' but it never worked'.
 
Add this to your styles additional css section
Code:
a:link,a:visited,a:active 
{
	text-decoration:none;
}
a:hover
{
	text-decoration:underline;
}
This will remove ALL underlines but show them on mouseover ;)
 
Back
Top