hey I put up a website for some friends who hang out with me on my server in quake (NOT a clan). I was having some problems with the Nav Panel on the left hand side though. I know some of you guys are html gurus, any suggestions/code how to fix this, it looks like crud. Wanted to space out the links and give the lettering a nicer look. Also had problems with the resolution/size of the background image, seems either too big or too small, never wants to fill the screen or doubles.
Thanks guys
Here is the site:
www.freewebs.com/thetempleofboom
Website Help
- Eraserhead
- Forum Regular
- Posts: 88
- Joined: Thu Dec 21, 2006 12:38 am
- Location: My chair at the moment
Website Help

You never know when an old calendar might come in handy! Sure, it's not 1985 right now, but who knows what tomorrow will bring?


- eXg. sabooya
- Doom 3
- Posts: 5133
- Joined: Mon Feb 13, 2006 9:47 pm
- Location: Ithaca, NY
- eXg. Pun1sher
- Number One
- Posts: 9283
- Joined: Tue Dec 27, 2005 5:11 pm
It's a little hard, only because with FreeWebs, they kinda lock you into using THEIR format, and I don't know if you have root access to the files or not.
As far as your background it looks like it's set to 1600X1200 image in this line:
You should resize the gunz image if you want it smaller. Onto the more invovled part of your navigation. They make heavy use of CSS stylesheets on FreeWebs, and you will be locked in to some degree, as they only offer up their sizing, and formatting. If you have root access, and/or can access your stylesheet, you can alter your nav. to some degree, including adding padding, or breaks to space it out here:
PuN
As far as your background it looks like it's set to 1600X1200 image in this line:
Code: Select all
<body style="background: transparent url(http://www.freewebs.com/thetempleofboom/guns_1600x1200.jpg) repeat scroll 0%;
Code: Select all
.fw-nav-menu {
width: 203px;
height: 370px;
padding: 0px;
margin: 0px 18px 0px 0px;
color: #fff;
float: left;
font: bold 10px verdana;
overflow: auto;
}
.fw-nav-menu ul {
width: 150px;
margin: 5px 0px 0px 32px;
padding: 0px;
list-style: none;
cursor: default;
overflow: hidden;
}
/*
* Individual NavBar LI's
*/
.fw-nav-menu li {
width: 150px;
margin: 0px;
padding: 0px;
overflow: hidden;
text-align: right;
}
/*
* Individual NavBar links
*/
.fw-nav-menu a,
.fw-nav-menu a:visited {
display: block;
color: #fff;
text-decoration: none;
overflow: hidden;
text-align: right;
padding-right: 15px;
}
.fw-nav-menu a:hover,
.fw-nav-menu a:visited:hover {
color: #b3a242;
text-decoration: none;
overflow: hidden;
background: transparent url('http://images.freewebs.com/Members/Generationz/CSSStyles/Grunge/Olive/bg-linkover.gif') no-repeat center right;
}

- eXg. Pun1sher
- Number One
- Posts: 9283
- Joined: Tue Dec 27, 2005 5:11 pm
Ummmm, errrr, ummm, well, as a General rule, Free websites are very good for being free. They do limit what you can do, as far as hacking their code alot of times. I've never had a FreeWeb gig, but they must offer you some sort of control panel type access to either the CSS stylesheet, or at least, some crude fill in the blank options, right ??
Either way, in the style sheets, you can see where they have defined, the nav, and links. You can also see, they align most of the stuff to the right, and also use a 15 pixel padding to buffer that out. If you want to change the font, that may help, also, you could add line breaks, or even padding under each link, to space it out some. Example:
text-align: right;
padding-right: 15px;
padding-bottom: 5px;
Now, this ASSUMES that there are not OTHER references that LOCK in your nav area somewhere else in their coding. Examples of this would be, that they lock in the size of the nav frame, and add some padding, then the main frame.
PuN
PuN
Either way, in the style sheets, you can see where they have defined, the nav, and links. You can also see, they align most of the stuff to the right, and also use a 15 pixel padding to buffer that out. If you want to change the font, that may help, also, you could add line breaks, or even padding under each link, to space it out some. Example:
text-align: right;
padding-right: 15px;
padding-bottom: 5px;
Now, this ASSUMES that there are not OTHER references that LOCK in your nav area somewhere else in their coding. Examples of this would be, that they lock in the size of the nav frame, and add some padding, then the main frame.
PuN
PuN
Last edited by eXg. Pun1sher on Thu Feb 01, 2007 9:26 pm, edited 1 time in total.

- eXg. sabooya
- Doom 3
- Posts: 5133
- Joined: Mon Feb 13, 2006 9:47 pm
- Location: Ithaca, NY
- eXg. Pun1sher
- Number One
- Posts: 9283
- Joined: Tue Dec 27, 2005 5:11 pm
- Eraserhead
- Forum Regular
- Posts: 88
- Joined: Thu Dec 21, 2006 12:38 am
- Location: My chair at the moment