Dear All,
Can anyone tell me whether PHP conflicts with CSS?
Also, can anyone tell me how I change my links style so that when the mouse is over a link, it is red (without any underline), and when no mouse is over it, it is white (without any underline).
Many thanks
Mark
Using CSS with PHP
Moderator: General Moderators
for the links:
Code: Select all
a { color: white; decoration: none; }
a:hover { color: red; }- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
Code: Select all
a.class_name
a.class_name:hover
etc...