|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You eat, breathe and sleep innovation. Build your mobile intelligence with BlackBerry® experts this July. Register Today! |
|
#1
|
|||
|
|||
|
Rollover Effect on a Mysql Record
Hi,
I am fairly new to PHP so this may be simple, im not sure. Im creating a LINKS page which just needs to list web address records from a Mysql database, no problems with that. How do I add a rollover effect to change the text color or font size in PHP?? Thanks, Dudester |
|
#2
|
|||
|
|||
|
RE: Rollover Effect on a Mysql Record
This isn't done in PHP. It is done with CSS.
|
|
#3
|
|||
|
|||
|
Message Moved
Thread moved from 'PHP Coding' to 'Client Side Things' by tkarkkainen.
Reason: Not PHP |
|
#4
|
||||
|
||||
|
RE: Rollover Effect on a Mysql Record
To the head part of your page, add this:
Code:
<style type="text/css">
a {
color:00f;
text-decoration: none;
}
a:hover {
color:f00;
text-decoration: underline;
}
</style>
Test it, should give you a general idea. CSS tutorials will give more detail. |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Rollover Effect on a Mysql Record |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|