Log in

View Full Version : Got a problem


Gophers
02-13-2013, 08:53 PM
I got a problem with something on my forum. There seem to be a werid looking line or something at the far left of my footer. Some grey type line or something werid looking. here is my CSS footer.

.footer {
clear: both;
margin-top: 12px;
text-align: right;
display: block;
background: none repeat scroll 0% 0% rgb(17, 17, 17);
padding: 5px 29px;
border: 0px none;
font: 13px Tahoma,Calibri,Verdana,Geneva,sans-serif;
}

ForceHSS
02-13-2013, 09:52 PM
Link to site

Amaury
02-13-2013, 09:58 PM
Link to site

It's in his signature.

Gophers
02-13-2013, 10:14 PM
NO that not the site here is the site.
http://big10sportsnation.com/forum/forum.php

Zachery
02-14-2013, 12:40 AM
Your entire footer area looks a bit fubar.

Two things, you've manually told this object that it needs to be at least this long.
<div style="width: 943px;" class="floatcontainer footer" id="footer">


and you've got a shadow on it, in your css


box-shadow: -2px 2px 2px #FFFFFF; on the footer (.footer) class in your css.

Gophers
02-14-2013, 12:50 AM
Your entire footer area looks a bit fubar.

Two things, you've manually told this object that it needs to be at least this long.
<div style="width: 943px;" class="floatcontainer footer" id="footer">


and you've got a shadow on it, in your css


box-shadow: -2px 2px 2px #FFFFFF; on the footer (.footer) class in your css.

Thank you sure. i got it all fixed now. i was wondering why it was like that, but it is fixed.

--------------- Added 1360813070 at 1360813070 ---------------

1 more thing and it bugging me, rather then start a new thread. What the easy way to have a br at the top of the page and at the bottom of the page. Meaning, i like to have the bottom, meaning below the body have a <br> break and one at the very top. Hoping i make it easy to understand.

ForceHSS
02-14-2013, 01:38 AM
Still going over to far on the right

Gophers
02-14-2013, 06:41 PM
Still going over to far on the right

I see what you mean, Anyway to fixed that. it look good in Firefox, but in IE, it like what you said. Is there a fixed or something that will work with both IE and Firefox.

LifesGreatestGift
02-15-2013, 05:45 PM
not really sure what you are trying to accomplish as the style is somewhat mediocre. but for starters

.below_body class needs the background to be changed to

url("http://big10sportsnation.com/forum/images/misc/footer.png") repeat-x scroll left bottom rgb(0, 51, 128)

as before its "no-repeat scroll left bottom"

the .body_wrapper class should probably be

width: 1100px;
margin: 0 auto;

and this code in the footer

<div class="body_wrapper2">

<div style="width: 943px;" class="floatcontainer footer" id="footer">

should probably be closer to

<div class="body_wrapper2">

<div style="width: 1042px;" class="floatcontainer footer" id="footer">

Thats probably the best you are going to get without redesigning the style....

:\

ForceHSS
02-15-2013, 07:09 PM
I see what you mean, Anyway to fixed that. it look good in Firefox, but in IE, it like what you said. Is there a fixed or something that will work with both IE and Firefox.

It seems to be like that the whole way up on the right but on the left side seems ok. So you would need to fix the full right side not just the footer

Gophers
02-15-2013, 09:53 PM
It seems to be like that the whole way up on the right but on the left side seems ok. So you would need to fix the full right side not just the footer

Thank you. i got it fixed now.