point me to a few sites that will educate me on how best to use CSS to design a websitedon't say google ok
9/21/2005 3:50:51 PM
are you looking for syntax tutorials or design principles tutorials
9/21/2005 4:16:06 PM
message_topic.aspx?topic=343538&page=1
9/21/2005 4:29:02 PM
both
9/21/2005 4:36:05 PM
send me a pm so i will not forget when i get home to send you a great site.
9/21/2005 4:47:19 PM
Don't use the AWP, god, don't use the AWP...
9/21/2005 4:53:37 PM
http://css.maxdesign.com.au/
9/21/2005 9:10:04 PM
thx
9/21/2005 9:24:22 PM
http://www.w3schools.com/
9/21/2005 10:29:12 PM
google for "Eric Meyer"
9/21/2005 10:30:07 PM
learn what selectors are and the different types of selectors
9/21/2005 10:39:26 PM
Try this for basics: http://www.westciv.com/style_master/academy/hands_on_tutorial/index.htmlI found it was best to simply look at how people did specific things. Look at the different designs of the same site and see what does what then copy the files and alter until you get the feel for it...http://csszengarden.com/http://www.mezzoblue.com/zengarden/alldesigns/
9/21/2005 11:22:15 PM
so i got a site looking nice in FireFox but looking shit in IEhow can i go about fixing that[Edited on September 22, 2005 at 6:23 PM. Reason : IE doesn't like the div tag ]
9/22/2005 6:19:00 PM
9/22/2005 6:34:51 PM
i just shoved tables into all the divs and got it looking acceptable
9/22/2005 6:56:09 PM
someone point me to some javascript that detects resolution plz
9/22/2005 7:15:09 PM
^^ that's worse than just using divs or just using tables.
9/22/2005 7:21:46 PM
eh, it works thoughis there a way to get a table to stretch all the way across the screen without manually setting the width? i tried the left attribute but that didn't work[Edited on September 22, 2005 at 7:36 PM. Reason : EDIT]
9/22/2005 7:27:19 PM
width = 100%?
9/22/2005 7:52:15 PM
that'll work i've been working in pixels primarily[Edited on September 22, 2005 at 7:59 PM. Reason : then again maybe it won't work]
9/22/2005 7:56:28 PM
so here's a question
<table class="pics"><tr><td><a class="links1" href="X.jpg"><center><img class="pic" height=120px src="X.jpg"></center><br><br><p class="links1">X</p></a></td><td><a class="links1" href="Y"><center><img class="pic" height=120px src="Y"></center><br><br><p class="links1">Y</p></a></td></tr><tr><a class="links1" href="Z"><center><img class="pic" height=120px src="Z"></center><br><br><p class="links1">Z</p></a></tr><tr><a class="links1" href="Q"><center><img class="pic" height=100px src="Q"></center><br><br><p class="links1">Q</p></a></tr></table>
9/23/2005 5:24:55 PM
9/23/2005 5:35:25 PM
<table class="pics"><tr><td><a class="links1" href="X.jpg"><center><img class="pic" height=120px src="X.jpg"></center><br><br><p class="links1">X</p></a></td><td><a class="links1" href="Y"><center><img class="pic" height=120px src="Y"></center><br><br><p class="links1">Y</p></a></td></tr><tr><td><a class="links1" href="Z"><center><img class="pic" height=120px src="Z"></center><br><br><p class="links1">Z</p></a></td></tr><tr><td><a class="links1" href="Q"><center><img class="pic" height=100px src="Q"></center><br><br><p class="links1">Q</p></a></td></tr></table>
9/23/2005 6:58:19 PM
yeah i had already figured it out thx though
9/23/2005 7:50:37 PM
is there a way to have a table extend out from the page but not cause the horizontal scrol bar to appear?
9/25/2005 6:38:30 PM
tables != css.stop using tables for positioning.
9/25/2005 8:33:54 PM
i'm using tables for a solid bar of color because the div doesn't work
div.redbar { background-color: #C60001; position: absolute; height: 24px; top: 100px; left: 0px; width: 100%; z-index: 2;}
9/25/2005 9:31:11 PM
it works if you do it correctly. there's more than one way to do it and not every way will work across platforms. oh the joys of css.
9/25/2005 11:34:36 PM
so offer advice instead of criticism douche
9/25/2005 11:38:41 PM
!
9/26/2005 12:12:37 AM
without seeing the specific code, you might have to put a nbsp in the div to get it to show up.[Edited on September 26, 2005 at 12:26 AM. Reason : dfs]
9/26/2005 12:26:37 AM
<div class="redbar"><table class="redbr"><tr><td></td></tr></table></div>.redbr { background-color: #C60001; position: absolute; height: 24px; width: 100%; z-index: 2;}
9/26/2005 12:28:10 AM
try spelling redbar correctly<div class="redbar"><br></div> will work. no need for tables
9/26/2005 1:13:18 AM
actually its <br/>[Edited on September 26, 2005 at 2:00 AM. Reason : .]
9/26/2005 2:00:21 AM
yeah, for xhtml you should close the br tag, but meh...
9/26/2005 2:26:12 AM
yeah that got rid of the need for the table, but it still doesn't extend all the way across the screen in IEi think the problem is IE needs a width of 102% to be all the way across the screen and that causes scrolling in Firefox
9/26/2005 8:11:02 AM
IE gives the body tag a default margin of 8px or something. set it to 0 and it should take up the full line
9/26/2005 8:33:02 AM
WELCOME TO HELL
9/26/2005 9:30:21 AM
aha, thx qntmfred
9/26/2005 10:31:20 AM
http://www.cssdrive.com/Great examples of quality CSS sites
9/27/2005 3:11:54 PM
how can i get rid of that gap between picture and table border?i've tried
img.lh { margin: 0 0 0 0; padding: 0 0 0 0;}table.sLinks { border: 3px solid #C60001; background-image: url('textbg2.jpg'); background-repeat: repeat; width: 130px; margin: 0 0 0 0; padding: 0 0 0 0;}
9/27/2005 5:00:05 PM
why hasn't this been linked yet...http://www.alistapart.com/
9/27/2005 5:22:33 PM
^^btw i found a way around that
9/27/2005 5:22:58 PM
how can i get IE to always show the vertical scrollbar?
10/3/2005 12:26:58 PM
IE DOES always show the vertical scrollbar
10/3/2005 12:42:27 PM
so i guess i got to figure out what i did to eliminate it then :-/
10/3/2005 8:05:30 PM
figured it outit was because of the iframe that the page was in when you forward the domain
10/4/2005 12:57:41 AM
http://dezwozhere.com/links.html
10/4/2005 6:04:02 PM
this thread is a lollercaust.most questions asked and then answered by the person who asked EVER.
10/4/2005 6:06:19 PM
well tech talk is pretty useless besides apple vs. windows vs. linux threads
10/4/2005 7:04:12 PM