Hi, Im trying to place links on my page but i want the hyperlink to look the same as the rest of the text, so there is no colour change or underline, i use external css and i cant get it to work. Can someone please tell me the code i need to use in my css file and the code i need to use in my html to achieve this. http://www.superiorshine.com.au/aboutus.html http://www.superiorshine.com.au/main.css Thanks
That wont work because if i do that then it will change hyperlink on other areas of my site to that, i need to to be specific to certain hyperlinks.
.text_link { text-decoration: none; color: (the color of that text); } HTML: ------------------------- <a href="url" class="text_link">blah </a> PHP: that should work if I'm not mistaken.
Well you could either give the links a new class altogether as shown above, or if it is all links in a certain element then you can refer to it like: #sectionname a { property:value; } You just need to find the easiest way to select the links you require from your CSS stylesheet. Search around for CSS selectors for more information.