NiftyHost Forums (Archive)

Full Version: css help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i suck at css and i need it to design my search engine i need help anyone willing to make me a basic css template i can customize or a link to one?
Any ideas how you want it to look? like any special colors, logo, vfx?
Normally, I would take money for this, but i'm in a good mood today, so here you go - just change whatever you want to fit your site.

Compliant with XHTML 1 Transitional and shows correctly in latest: Chrome, Firefox, Safari, Opera and Internet Explorer. I've even added a bit of basic SEO stuff.

Demo: http://arkine.uni.cc/Zavoo_tmp/zavoo.html

Zip Packaged File: http://arkine.uni.cc/Zavoo_tmp/Zavoo.zip



Cheers! ;)
(06-14-2010, 10:13 AM)Vanilla Wrote: [ -> ]Any ideas how you want it to look? like any special colors, logo, vfx?
Normally, I would take money for this, but i'm in a good mood today, so here you go - just change whatever you want to fit your site.

Compliant with XHTML 1 Transitional and shows correctly in latest: Chrome, Firefox, Safari, Opera and Internet Explorer. I've even added a bit of basic SEO stuff.

Demo: http://arkine.uni.cc/Zavoo_tmp/zavoo.html

Zip Packaged File: http://arkine.uni.cc/Zavoo_tmp/Zavoo.zip



Cheers! ;)

it looks great!!!! THANKS!!!! how can i set up the search page with that same template :\ ? i cant find a div style for the bg
I suppose you could use the same css file, on the search page? :
PHP Code:
<link href="style.css" rel="stylesheet" type="text/css" media="screen" /> 

Or you could set the body style to have the BG image as background:
PHP Code:
<body style='background-image: url(BG.jpg);'

It should make the background consistent.


By the way, you'r copyright notice div (id : footer) on your main page is floating in the middle of the parent div:
[Image: FloatingStuff.jpg]
- That's atleast what's it's in my browser (Opera), just wanted to let you know :)

Hope it helps ;)
yea i know i was trying to move it with css but it wont move
(06-18-2010, 10:30 AM)Zavoo Wrote: [ -> ]yea i know i was trying to move it with css but it wont move

I guess you could make the footer div (id : footer) have relative positioning instead of static. And then place it relation to the top of the parent div.
I'm not fully sure, but this should do the trick (edit id: footer) :
PHP Code:
#footer { 
width300px;
positionrelative;
margin-topauto;
margin-rightauto;
margin-bottomauto;
margin-leftauto;
top165px;


Hope it helps ;)
ok .