View Full Version : If you know how to do style sheets please read
Weapon
March 31st, 2001, 01:52
I was just wondering what you type in a style sheet if you want:
No underline in links
No border in image
A specific font
A specific size
do you just remove the top and bottom <style> and get the inside to put into a style sheet? oh and what if I want to add some of my own stuff
is0lized
March 31st, 2001, 02:10
this is my style sheet for my, you can also get top style for this
BODY {
scrollbar-face-color: #333333;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-3dlight-color: #666666;
scrollbar-darkshadow-color: #222222;
scrollbar-track-color: #111111;
scrollbar-arrow-color: #ff9900
}
A:link {
color:#ffffff; font-weight:400; text-decoration:none
}
A:active {
color:#ffffff; font-weight:light; text-decoration:none
}
A:visited {
color:#ffffff; font-weight:400; text-decoration:none
}
A:hover {
color:##344B5D; font-weight:500; text-decoration:none
}
body {
font-family : verdana,arial;
font-size: 8pt;
font-weight : normal;
text-decoration : none;
color : #ffffff;
background-color : #344B5D;
cursor : default;
}
td {
font-family : verdana,arial;
font-size: 8pt;
line-height: 10px;
font-weight : normal;
color : #ffffff;
}
and i used this to includ eit on my page
<LINK rel="stylesheet" type="text/css" href="web.css">
gyrbo
March 31st, 2001, 06:42
Originally posted by Weapon
I was just wondering what you type in a style sheet if you want:
No underline in links
No border in image
A specific font
A specific size
do you just remove the top and bottom <style> and get the inside to put into a style sheet? oh and what if I want to add some of my own stuff
Not to underline:
a {text-decoration:none}
No border: in the img tag, add
border="0"
A specific font,A specific size:
body {font-family: Arial, Helvetica; font-size: 10px}
Weapon
April 2nd, 2001, 22:59
Is there to make it that all the text in a particular cell a certain font size and the rest another?
lucifer
April 3rd, 2001, 07:43
define a class
<style>
.myclass {font-size:x 16px}
</style>
...
<TD><p>some text as defined for cell
<span class="myclass">different font size</span>
back to normal </td>
....
Powered by vBulletin® Version 4.1.7 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.