|
Posted by John Dunlop on 05/09/06 19:32
KiwiBrian:
> >> Is it possible for anyone to help me to apply CSS styles to these links
> >> without you being able see the PHP etc?
>
> http://www.hibiscuslink.co.nz/FHF/events.php
I see your 'text-decoration: none !important' in an inline style, so
I'm supposing that that's what you've tried.
You have to apply the styles to the As rather than the DIVs. There
are various ways. For example, assign a class to every link (e.g., <a
class="..." href="...">), or use some contextual selector, or just the
type selector A,
A:hover {text-decoration: none;}
http://www.w3.org/TR/CSS21/selector.html
If you're still having no luck, I suggest looking at the browser to
see if it's overriding author stylesheets with !important user
stylesheets.
--
Jock
Navigation:
[Reply to this message]
|