kaylog Banned Banned 843 2011 319 0 Jul 25, 2012 #1 Hi Mates I have problem becouse I don't know how to delete underline from links and how to set the default color for links(default is blue) Link to my site is on signature
Hi Mates I have problem becouse I don't know how to delete underline from links and how to set the default color for links(default is blue) Link to my site is on signature
S soft2050 Active Member 2,942 2010 438 10 Jul 25, 2012 #2 Add this to your css file: PHP: a { color: red; //or hex code text-decoration:none; // to remove underline from links }
Add this to your css file: PHP: a { color: red; //or hex code text-decoration:none; // to remove underline from links }
G gojmgo Active Member 109 2012 11 10 Jul 25, 2012 #4 The code given above should work. Try to clear the browser cache or try this one Code: a:link {text-decoration: none} Last edited: Jul 25, 2012
The code given above should work. Try to clear the browser cache or try this one Code: a:link {text-decoration: none}
S Sonic Active Member 882 2011 470 30 Jul 26, 2012 #5 a, a:link, a:visited, a:active { color: blue; text-decoration: none !important; }