View Full Version : ccs help please?
Weapon
June 23rd, 2001, 17:28
any1 know a good cdd tutorial site? also what would I have to add if I wanted my fint size to be 8pt?
gyrbo
June 23rd, 2001, 17:45
I use the built in O'Reiley refference in DreamWeaver.
.bla {font-size: 8pt}
or
body {font-size: 8pt}
meow
June 23rd, 2001, 18:02
I think www.htmlhelp.com is a good place to start. You can dl their reference in .hlp format too. They also have a link section with some good ones.
You can also inline the syle like so:
<p style="font-size:9pt">blah blah</p>
But you don't want to use points. It's purpose is for printing and not for screen. It's unpredictable how pt will render on different systems. Pixels are better. 8 should very small in either. Be aware that neither pt nor px are resizable in IE for windows or in NS (maybe in the latest they are). Lots of units to choose from in CSS. :)
Weapon
June 24th, 2001, 00:40
how do I add thing to this <a href="javascript:history.back(1)">Back</a> so it make it that it has no underline, is white, when clicked on still stay white and only to the part of the text (the back test)
meow
June 24th, 2001, 01:15
White and no underline all the time? Simpest like below. Not really good but somewhere to start :)
<a href="javascript:history.back()" style="color:#FFFFFF;text-decoration:none">Back</a>
Weapon
June 24th, 2001, 01:54
AND WHEN CLICKED ON STILL WHITE
meow
June 24th, 2001, 02:06
:eek: FINE! TAKE THE WHOLE MUMBO JUMBO THEN! :eek:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Index</title>
<style type="text/css">
<!--
a.blah:link { color: #FFFFFF; background: transparent none; text-decoration: none }
a.blah:visited { color: #FFFFFF; background: transparent none; text-decoration: none }
a.blah:active { color: #FFFFFF; background: transparent none; text-decoration: none }
a.blah:hover { color: #FFFFFF; background: transparent none; text-decoration: none}
-->
</style>
</head>
<body>
<a href="javascript:history.back()" class="blah">Back</a>
</body>
</html>
Change it around until it fits. :D;)
Weapon
June 24th, 2001, 02:39
Originally posted by meow
:eek: FINE! TAKE THE WHOLE MUMBO JUMBO THEN! :eek:
I am scared someone hold me, please don't hurt me:eek:
meow
June 24th, 2001, 02:56
:mad: NO ONE WILL PROTECT YOU. YOU CAN'T HIDE FROM THE KILLER KITTEN OF REVENGE. :mad:
:p :p :p :p YOU ARE DOOMED.:p :p :p :p
Weapon
June 24th, 2001, 03:28
arhhhhhh!!!!!!!!!! mum!!!!!!!! [runs and hide under bed]:eek: :eek: :eek: :eek: :eek:
gyrbo
June 24th, 2001, 05:03
Don't be affraid, the mighty gyrbo will save you. [barks at meow]
Powered by vBulletin® Version 4.1.7 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.