gloomer v2

This is a discussion on "gloomer v2" within the Web Page Design section. This forum, and the thread "gloomer v2 are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 16th, 2007, 00:04
New Member
Join Date: Nov 2007
Location: seattle
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
gloomer v2

I decided to make this design as simple as possible.

I'm still having a little bit of trouble here though.

gloomer.byethost13.com

I'd like to move the text portion 'up' a little bit, but I'm not sure how.

I'd also like to move the links to be placed a little left more, and in line with the header.

Is my code decent? Are there any errors, optimization tricks or such that I'm missing?

Thanks a bunch for viewing this.
Reply With Quote

  #2 (permalink)  
Old Nov 16th, 2007, 00:53
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: gloomer v2

Could you post your code? The positioning is simple to achieve with the right css styling, but we need to see it first... From your source code I gather this:
Code: Select all
body {
margin:0;
padding:0;
background-color:#000000;
font:12px "Lucida Grande", Arial, Sans-serif;
color:#1e87fe;
}



#header {
border:1px;
}

a:link {
color:#1e87fe;
}

a:visited {
color:#b820ba;
}


a:hover {
color:#b820ba;
}

a:active {
color:#1e87fe;
}


#nav {
float:right;
list-style:none;
}




ul li {
display:inline;
}


#sidebar {
margin:10px;
float:left;
}


#sidebar2 {
margin:10px;
float:right;
}

#content {
margin:100px;
padding:0px;
line-height:200%;
width:900px;
}

h1 {
color:#b820ba;
}

#footer {

}
Is that it? Try making the content like this:
Code: Select all
#content {
margin:10px;
padding:0px;
line-height:200%;
width:900px;
}
Your margin was 100px! That's huge, so I made it 10px instead. That should do it. I'll get back to the links...

Cheers
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 09:14.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43