Home | Help Forums | Web Design Tutorials | Free Swishmax Downloads | All Downloads

 

 

Company

Home

Nework Details

Tutorials

SWiSH 2

SWiSHMax

Flash MX

PHP & MySQL

HTML / JScript

Adobe Photoshop

Corel Draw

Gimp

Miscellaneous

Downloads

Templates

Plugins

Fonts

Wallpapers

Free Images

Scripts and Codes

Products

E-Books

SWiSH BB

SWiSH Templates

SWiSH-DB Newsletter
Subscribe to our newsletter : GO
  Partners / Affiliates

   Swish Templates
   SWiSH Climax
   GimpTalk
   Idea Designs
   Sposatoettore
   Try Acai Berry Diet
   Download Free Ringtones
   Swishzone

Manage your site with Flax Article Content Management System
CSS - About Mouseover by cortex
Category : HTML / Javascript | Level : Intermediate | Language : English
Ask Question | Read Comments | Post tutorial | Previous | Next

Web www.swish-db.com

Yes, great and thanks, i would just add that maybe pic are a little bit too much. As people will use many different software, and not only notepad. Assume that people going here know how to do open, edit and save a file. Giving a filename would be more than suficient.


About the question of how to outline css, just put the content between <style></style> in a file named for eg. style.css.
then, in the head section of your web page add this link replacing the <style> tag :
CODE

<link rel="stylesheet" type="text/css"  href="style.css" />


following this and taking the eg above, you should arrive to this

file: style.css
CODE
A {
color: #990000:
font-family: Arial, Helvetica;
text-decoration: none;
}
A:Hover {
color: #FF0000;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
cursor: hand;
}
A:Active {
color: #990000;

font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
}



file css1.html
CODE
<HTML>
<head>
<title>Css Tutorial 1</title>
<link rel="stylesheet" type="text/css"  href="style.css" />
</head>
<body>
<a href=“http://www.swish-db.com”>This is gonna be your Mouseover text link</a>
</body>
</HTML>



A last way of doing , is by adding directly a style attribute in the tag you want to customise, look below with the <a> tag

file css1.html
CODE
<HTML>
<head>
<title>Css Tutorial 1</title>
</head>
<body>
<a href=“http://www.swish-db.com” style="color: #990000: font-family: Arial, Helvetica; text-decoration: none;">This is gonna be your Mouseover text link</a>
</body>
</HTML>



cheers,

cortex


All rights reserved - swish-db.com