Topic: Sort of my first self built CSS design (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Lost Angeles Kalifornia, via Hawaii.... |
posted 10-04-2008 19:45
Ok so most of you know that I've asked dozens of questions regarding CSS, and finally started to get the jist of everything, sort of. Bought countless books on CSS, and I've actually built my first 3 column site on my own without using a template. I sort of started with one, but quickly abandonded it as I broke it somewhere along the way. |
Paranoid (IV) Inmate From: cell 3736 |
posted 10-05-2008 00:04
Site looks pretty. I suck at CSS so I can't say anything about that |
Maniac (V) Inmate From: there...no..there..... |
posted 10-05-2008 14:09
good job Rob. The only thing that I see that I would probably change is the nav at the top. That's a list too it's just in-line right? |
Maniac (V) Mad Librarian From: Seoul, Korea |
posted 10-06-2008 05:34
Yeah, the JS confused me as well. It looks to be superfluous. |
Paranoid (IV) Inmate From: Lost Angeles Kalifornia, via Hawaii.... |
posted 10-06-2008 05:46
I would much rather do it through CSS, but I'm not exactly sure how to do it... |
Paranoid (IV) Inmate From: INFRONT OF MY PC |
posted 10-06-2008 08:14 |
Maniac (V) Inmate From: there...no..there..... |
posted 10-06-2008 15:23
well, from the looks of the site, you don't need to do an "image" change. It's just a text color change right? code: <div id="nav"> <a href="index.php"><img src="img/btn_home_off.jpg" alt="HOME" border="0" class="domroll img/btn_home_over.jpg"/></a> <a href="sermons.php"><img src="img/btn_sermons_off.jpg" alt="SERMONS" border="0" class="domroll img/btn_sermons_over.jpg"/></a> <a href="articles.php"><img src="img/btn_articles_off.jpg" alt="ARTICLES" border="0" class="domroll img/btn_articles_over.jpg"/></a> <a href="gallery.php"><img src="img/btn_gallery_off.jpg" alt="FAMILY ALBUM" border="0" class="domroll img/btn_gallery_over.jpg"/></a> <a href="churches.php"><img src="img/btn_family_off.jpg" alt="FAMILY OF CHURCHES" border="0" class="domroll img/btn_family_over.jpg"/></a> <a href="resources.php"><img src="img/btn_resources_off.jpg" alt="RESOURCES" border="0" class="domroll img/btn_resources_over.jpg"/></a> <a href="contact.php"><img src="img/btn_contact_off.jpg" alt="CONTACT" border="0" class="domroll img/btn_contact_over.jpg"/></a> </div>
code: <div id="nav"> <ul> <li><a href="index.php">HOME</a></li> <li><a href="sermons.php">SERMONS</a></li> <li><a href="articles.php">ARCTICLES</a></li> <li> <a href="gallery.php">GALLERY</a></li> <li><a href="churches.php">CHURCHES</a></li> <li><a href="resources.php">RESOURCES</a></li> <li><a href="contact.php">CONTACT</a></li> </ul> </div>
|
Maniac (V) Inmate From: there...no..there..... |
posted 10-06-2008 15:25
check this site out for some lists as menus. |
Paranoid (IV) Inmate From: Lost Angeles Kalifornia, via Hawaii.... |
posted 10-07-2008 04:47
Yeah I guess that would work, I was just going for an esthetic thing... I found a couple links to some cool css rollovers that involve one image with both states and the over state pulls from a: hover to move the image over just enough to display the "over state". Very cool, but heard it was kind of buggy. |
Maniac (V) Mad Librarian From: Seoul, Korea |
posted 10-07-2008 08:17
I would definitely go for text, but that's just me. If the buttons were something that required graphics, I could see maybe going with graphics, but I think you could easily get away with text here. Give it a shot and see how it works out. It will simplify the code and lighten up the page a bit. |