NiftyHost Forums (Archive)
css help - Printable Version

+- NiftyHost Forums (Archive) (https://niftyhost.chary.us/support)
+-- Forum: Technology (https://niftyhost.chary.us/support/forum-7.html)
+--- Forum: Coding (https://niftyhost.chary.us/support/forum-12.html)
+--- Thread: css help (/thread-279.html)



css help - Zavoo - 06-14-2010

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?


RE: css help - Vanilla - 06-14-2010

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! ;)


RE: css help - Zavoo - 06-18-2010

(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


RE: css help - Vanilla - 06-18-2010

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 ;)


RE: css help - Zavoo - 06-18-2010

yea i know i was trying to move it with css but it wont move


RE: css help - Vanilla - 06-18-2010

(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 ;)


RE: css help - Zavoo - 06-19-2010

ok .