Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Design and Graphics Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-13-2013, 09:53 PM
Gophers's Avatar
Gophers Gophers is offline
 
Join Date: Jan 2006
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Got a problem

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;
}
Attached Images
File Type: png footer1.png (2.0 KB, 0 views)
Reply With Quote
  #2  
Old 02-13-2013, 10:52 PM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Link to site
Reply With Quote
  #3  
Old 02-13-2013, 10:58 PM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
Link to site
It's in his signature.
Reply With Quote
  #4  
Old 02-13-2013, 11:14 PM
Gophers's Avatar
Gophers Gophers is offline
 
Join Date: Jan 2006
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

NO that not the site here is the site.
http://big10sportsnation.com/forum/forum.php
Reply With Quote
  #5  
Old 02-14-2013, 01:40 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Code:
<div style="width: 943px;" class="floatcontainer footer" id="footer">
and you've got a shadow on it, in your css

Code:
    box-shadow: -2px 2px 2px #FFFFFF;
on the footer (.footer) class in your css.
Reply With Quote
  #6  
Old 02-14-2013, 01:50 AM
Gophers's Avatar
Gophers Gophers is offline
 
Join Date: Jan 2006
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery View Post
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.
Code:
<div style="width: 943px;" class="floatcontainer footer" id="footer">
and you've got a shadow on it, in your css

Code:
    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 [DATE]1360813070[/DATE] at [TIME]1360813070[/TIME] ---------------

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.
Reply With Quote
  #7  
Old 02-14-2013, 02:38 AM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Still going over to far on the right
Reply With Quote
  #8  
Old 02-14-2013, 07:41 PM
Gophers's Avatar
Gophers Gophers is offline
 
Join Date: Jan 2006
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
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.
Reply With Quote
  #9  
Old 02-15-2013, 06:45 PM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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

Code:
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

Code:
width: 1100px;
margin: 0 auto;
and this code in the footer

Code:
<div class="body_wrapper2">

<div style="width: 943px;" class="floatcontainer footer" id="footer">
should probably be closer to

Code:
<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....

:\
Reply With Quote
  #10  
Old 02-15-2013, 08:09 PM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gophers View Post
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
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 10:19 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04554 seconds
  • Memory Usage 2,275KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (8)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete