New Widesreen Design with CSS...
Collapse
X
-
Tags: None
-
Very nice!!
There's a few things I could nitpick at but all in all, that's some great CSS work
-
looks good, well done
__________________
Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
Check out the #1 WordPress SEO Plugin: CyberSEO SuiteComment
-
-
Thanks for the comments everyone! Much appreciated!
StuartD... what can you nitpick at? I would like to know so I can fix the problems. I did find out that some of my transparent png's are not displaying correctly in EI5 and 6. But other than that can you tell me what you found to be wrong please? Thanks!
p-fComment
-
Love the FDAU girls...
We met briefly in phx and spoke about you looking for new design, looks like you got it done
looks good, its definitely bandwidth friendly
Comment
-
site looks like a hot sellerSince 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

My Newest ThemeComment
-
looks nice, although I'd use an ul for the yearbook, that way you can just add a linked thumb and it will automatically adjust to your css. in example, where you have
I'd useCode:<div class="yearbook-tn"> <div class="yearbook-tn-placeholder"> <a href="/student-nikki.php"><img src="http://facedownassupuniversity.com/pix/yb_nikki.jpg" alt="Next Door Nikki" /><br />Next Door Nikki</a> </div> </div>
Code:<li><a href="/student-nikki.php"><img src="http://facedownassupuniversity.com/pix/yb_nikki.jpg" alt="Next Door Nikki" /><br />Next Door Nikki</a></li>
so, instead ofyou'd need to define just the ul, li, a: and container div if needed. Less code and easier to manage. ah, I'd make that black font white or at least some contrasting color over a blue bg. Anyway, well done, nicely organized CSSCode:#yearbook { position: relative; height: 1360px; width: 980px; background: #759aea url('../pix/dani-legspread.png') no-repeat scroll; background-position: 345px 82px; border-top: 1px solid black; border-bottom: 1px solid black; } #yearbook-padding { margin-top: 3px; padding: 0 0px 0px 29px; } .yearbook-tn, .yearbook-tn-special { float: left; height: 200px; width: 133px; text-align: center; margin: 10px 25px 0 0; padding: 0; } .yearbook-tn-placeholder { height: 195px; width: 133px; line-height: 15pt; background: #435c9e url('../pix/yb_bg.gif') no-repeat } .yearbook-tn img { height: 175px; width: 131px; border: 0; position: relative; top: 1px; } .yearbook-tn-special img { height: 176px; width: 133px; border: 0; } .yearbook-tn a:link {text-decoration: none; color: #000;} .yearbook-tn a:visited {text-decoration: none; color: #000;} .yearbook-tn a:hover {text-decoration: none; color: #fff992; background: none;} .yearbook-tn a:active {text-decoration: none; color: #000;} .yearbook-tn-special a:link {text-decoration: none; color: #000;} .yearbook-tn-special a:visited {text-decoration: none; color: #000;} .yearbook-tn-special a:hover {text-decoration: none; color: #fff992; background: none;} .yearbook-tn-special a:active {text-decoration: none; color: #000;}
This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truthComment
-
If harvey says something about css... its so
Comment
-
-
This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truthComment
-
Comment
-
Oh, not so much wrong... just some things that could have been cleaned up a little more, for example.Thanks for the comments everyone! Much appreciated!
StuartD... what can you nitpick at? I would like to know so I can fix the problems. I did find out that some of my transparent png's are not displaying correctly in EI5 and 6. But other than that can you tell me what you found to be wrong please? Thanks!
p-f
ie: In your LU box, you have 27 images in there, each with an inline style set (margin-top: 5px;) which, while not wrong, will be a huge pain in the neck should you ever want to change that in the future.
You have a really great use of CSS in your page yet still have a ton of inline CSS that is copied over and over and over again when really it should just be another CSS class.
Another is that you have quite a lot of <br /> tags in your page but when using proper CSS to space everything, they really should not be required. Especially immediately before or after an image. Your margins and padding can already do the work of a br tag.
Just minor things like that... like I said, nit picking. It's all very well done and works quite well anyway.
As for IE 6 or less, doing an all CSS site for those browsers is one of the biggest headaches you'll ever give yourself online.Comment
-
That is a good idea... I will take a look at doing that. THANKS!looks nice, although I'd use an ul for the yearbook, that way you can just add a linked thumb and it will automatically adjust to your css. in example, where you have
I'd useCode:<div class="yearbook-tn"> <div class="yearbook-tn-placeholder"> <a href="/student-nikki.php"><img src="http://facedownassupuniversity.com/pix/yb_nikki.jpg" alt="Next Door Nikki" /><br />Next Door Nikki</a> </div> </div>
Code:<li><a href="/student-nikki.php"><img src="http://facedownassupuniversity.com/pix/yb_nikki.jpg" alt="Next Door Nikki" /><br />Next Door Nikki</a></li>
so, instead ofyou'd need to define just the ul, li, a: and container div if needed. Less code and easier to manage. ah, I'd make that black font white or at least some contrasting color over a blue bg. Anyway, well done, nicely organized CSSCode:#yearbook { position: relative; height: 1360px; width: 980px; background: #759aea url('../pix/dani-legspread.png') no-repeat scroll; background-position: 345px 82px; border-top: 1px solid black; border-bottom: 1px solid black; } #yearbook-padding { margin-top: 3px; padding: 0 0px 0px 29px; } .yearbook-tn, .yearbook-tn-special { float: left; height: 200px; width: 133px; text-align: center; margin: 10px 25px 0 0; padding: 0; } .yearbook-tn-placeholder { height: 195px; width: 133px; line-height: 15pt; background: #435c9e url('../pix/yb_bg.gif') no-repeat } .yearbook-tn img { height: 175px; width: 131px; border: 0; position: relative; top: 1px; } .yearbook-tn-special img { height: 176px; width: 133px; border: 0; } .yearbook-tn a:link {text-decoration: none; color: #000;} .yearbook-tn a:visited {text-decoration: none; color: #000;} .yearbook-tn a:hover {text-decoration: none; color: #fff992; background: none;} .yearbook-tn a:active {text-decoration: none; color: #000;} .yearbook-tn-special a:link {text-decoration: none; color: #000;} .yearbook-tn-special a:visited {text-decoration: none; color: #000;} .yearbook-tn-special a:hover {text-decoration: none; color: #fff992; background: none;} .yearbook-tn-special a:active {text-decoration: none; color: #000;}
Comment
-
Hot chicks but I do not see alot of face down ass up action


NAKED HOSTING FTW!11 I'm On The INSANE PLAN $9.95/mo!
| The Alien Blog Adult News Worth Reading Updated Daily
| Content For Sale! 641 PICS 216 MINUTES OF VIDEO $350.00 |ICQ: 78943384 |Comment
-
-
hey,
Great looking tour. Congrats on going CSS.
Been trying to get in touch with you for a bit, can you drop me a quick note on icq/email or leave your email here so i can drop you a note?
Thank you
Amar
447542128
[email protected]My icq; 4 4 7 5 4 2 1 2 8
Amar @ paper street cash .comComment
-
Just an advice from experienced css/xhtml developer. The spaces you created on css are simply useless. Save your bits taking the spaces off! The cleanest and the best optimized css file shell fit in one line per class, id. Just separate the blocks of related styles and if you are good enough you would easily read it and follow the code. Why to do so.. its simple, you save your bits of code and loading time. The search bots will go through the file faster and yeah it might not be that much time save but line by line you optimize everything.
Sample:
.porn {background:#fff; color:#000; font-size:1em; width:200px; height:100px;}
Cheers.Last edited by mikoleg; 06-30-2008, 12:54 PM.BangThemes.com - Adult web design, adult branding, adult premium blog themes.
ICQ: 490719967 or support [at] bangthemes.comComment
-
[email protected]hey,
Great looking tour. Congrats on going CSS.
Been trying to get in touch with you for a bit, can you drop me a quick note on icq/email or leave your email here so i can drop you a note?
Thank you
Amar
447542128
[email protected]Comment
-
Thanks! I will probably do that. During the design it is a lot easier for me to seperate everything... keeps it clean and organized for me... but now that it is done... you have a good point. Thanks!Just an advice from experienced css/xhtml developer. The spaces you created on css are simply useless. Save your bits taking the spaces off! The cleanest and the best optimized css file shell fit in one line per class, id. Just separate the blocks of related styles and if you are good enough you would easily read it and follow the code. Why to do so.. its simple, you save your bits of code and loading time. The search bots will go through the file faster and yeah it might not be that much time save but line by line you optimize everything.
Sample:
.porn {background:#fff; color:#000; font-size:1em; width:200px; height:100px;}
Cheers.Comment
-
The new site is looking great, and thanks for the joins you've been sending! I'm guessing enrollment is up at FDAU University, because you've got an impressive student body there... speaking of impressive student bodies, makes me wish I was back in college.
gunner @tutamail.com
25 years in the jizz bizComment
-
Overall good start and good CSS, but I would defintily slightly style it a bit more.Comment
-
Phil and his FDAU Girls made the phx forum so memorable this year!!!Comment





Comment