Greenguy's Board

Greenguy's Board (http://www.greenguysboard.com/board/index.php)
-   Programming & Scripting (http://www.greenguysboard.com/board/forumdisplay.php?f=15)
-   -   Stupid CSS Bugs (http://www.greenguysboard.com/board/showthread.php?t=37642)

oast 2007-01-29 05:58 AM

Quote:

Originally Posted by Simon (Post 328030)
Try this one...
http://jigsaw.w3.org/css-validator/

Also, if you're making changes to an external css file and not seeing the changes in your html page (especially in IE), one thing that often "refreshes" everything is to load your external css file in your browser and then load your html page in the same window. It's harder for IE (and other browsers) to act like they don't know about your changes after you've just rubbed their faces in it.

A refresh using Ctrl+F5 will force the browser to download all fresh content from the server.

Licker4U 2007-01-29 07:38 AM

Quote:

Originally Posted by Simon (Post 328030)
Try this one...
http://jigsaw.w3.org/css-validator/

Also, if you're making changes to an external css file and not seeing the changes in your html page (especially in IE), one thing that often "refreshes" everything is to load your external css file in your browser and then load your html page in the same window. It's harder for IE (and other browsers) to act like they don't know about your changes after you've just rubbed their faces in it.

Quote:

Originally Posted by oast (Post 328078)
A refresh using Ctrl+F5 will force the browser to download all fresh content from the server.

Thanks, I'll try both

Licker4U 2007-01-30 10:59 AM

When using this for a dotted border:

p.dotted {border-style: dotted;
border-color: #0000ff}

is there any way to adjust the size of the dots? All I've found is thick, medium and thin.... |huh

I found it. This works:

border-width: 2px

HC-Majick 2007-01-30 11:15 AM

edit...nevermind, seems to be some bugs.

Licker4U 2007-02-04 10:41 AM

Are there any neat things that can be done to text with CSS like shadow, glow, etc?

Simon 2007-02-04 10:57 AM

If you're willing to have (most?) effects only work in Internet Explorer and only on the Windows platform, then these links may help.

www.w3.org/TR/REC-CSS2/text.html
http://tutorials.alsacreations.com/ombre/
www.webthang.co.uk/Tuts/tuts_css/css4/css4.asp

More at www.google.com/search?q=css+text+effects

Filter generator
http://rainbow.arch.scriptmania.com/...generator.html

Make sure to look at these effects in Firefox since many reviewers prefer using that browser. You need to be sure things will degrade in ways that won't hurt you.

Licker4U 2007-02-05 09:34 AM

Thanks Simon, one of those was exactly what I wanted |bow| |bananna| |headbang| |thumb

Licker4U 2007-02-14 09:20 AM

I'm using this for a text link but the font is showing up bold. How can I get the font to be normal, not bold?

a.two:link {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;
}

a.two:active {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;
}
a.two:visited {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;
}
a.two:hover {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;}

Preacher 2007-02-14 12:23 PM

font-weight: normal

Licker4U 2007-02-14 03:58 PM

Quote:

Originally Posted by Preacher (Post 331794)
font-weight: normal

Well damn, that was too easy.

Thanks! |thumb


All times are GMT -4. The time now is 05:16 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc