Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 





Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read

Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
Thread Tools
Old 11-06-2005, 05:18 PM   #1 (permalink)
Manager Emeritus
 
v-six's Avatar
 
Join Date: Sep 2004
Location: High Falls, NY
Posts: 2,073
OS: OS X for mac, XP Pro for PC


Send a message via AIM to v-six
css troubles

Hi all, having a silly little glitch in Firefox (and probably other browsers).
The horizontal scrollbars are showing up at the bottom of this page: www.newpaltzadjuncts.org
and my browser is pretending the page doesn't fit in the browser.
Any thoughts?
-Six
P.S. I couldn't figure out the best way to explain this, if you want me to better explain it I'll try.
__________________
mysql> --i-am-a-dummy

v-six is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-06-2005, 08:39 PM   #2 (permalink)
Professor/Moderator, TSF Design School
 
Grove's Avatar
 
Join Date: Jun 2005
Location: Australia
Posts: 2,382
OS: Windows XP SP2


Hey Six,

I am using 1024x768 IE browser here at the moment. Works Great, no top scrollbars. I'll check when I'm at home in my FireFox browser with resolution 1024x768.
__________________
==========================================

Get Help:
TSF Security Forum | HijackThis | MB's 5 Step Process
Get Clean:
AdAware SE | Spybot S&D | CWShredder | Ewido | CleanUp!
Get Protected:
SpywareBlaster | SpywareGuard | Windows Updates | IE-SpyAd


If TSF has helped you, please consider making a donation to help keep the board running.
Grove is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-06-2005, 11:22 PM   #3 (permalink)
Manager Emeritus
 
v-six's Avatar
 
Join Date: Sep 2004
Location: High Falls, NY
Posts: 2,073
OS: OS X for mac, XP Pro for PC


Send a message via AIM to v-six
thanks Grove, it's not a priority
__________________
mysql> --i-am-a-dummy

v-six is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-06-2005, 11:38 PM   #4 (permalink)
Professor/Moderator, TSF Design School
 
Grove's Avatar
 
Join Date: Jun 2005
Location: Australia
Posts: 2,382
OS: Windows XP SP2


Hmmmmm ..... odd. Same thing happens here. I just checked in my FireFox browser and I end up with the scrollbars at the bottom.

Let me work on this a bit later for you, am tired at the moment.
__________________
==========================================

Get Help:
TSF Security Forum | HijackThis | MB's 5 Step Process
Get Clean:
AdAware SE | Spybot S&D | CWShredder | Ewido | CleanUp!
Get Protected:
SpywareBlaster | SpywareGuard | Windows Updates | IE-SpyAd


If TSF has helped you, please consider making a donation to help keep the board running.
Grove is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-08-2005, 12:31 PM   #5 (permalink)
Manager, On the Web
 
E-Liam's Avatar
 
Join Date: Jan 2004
Location: Bracknell, UK
Posts: 929
OS: XP


Hi Six,

Try changing the border code to the following in your css for the header div..

Code:
#header {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	height: 70px;
	width: 100%;
	top: 0px;
	background-color: #FBB661;
	border: 1px 0px 1px 0px solid #000033;
}
It looks like the old favourite problem with IE vs Firefox, where in FF the border is added to the width/height, whereas in IE it is integral to the figure for the particular dimension that you choose to use.

I'm sort of running out the door, so let me know how you get on.. I'll be back later. Or Grove will be in shortly no doubt.

Cheers

Liam
__________________


My Mother suggested a family outing... so I told her Uncle Bob was gay. (Trevor D.)

Never argue with an idiot! They'll bring you down to their level and beat you with experience.

---------------------------------------------------------------------------------
A member of the Alliance of Security Analysis Professionals since 2004.

Last edited by E-Liam : 11-08-2005 at 12:33 PM.
E-Liam is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-08-2005, 10:27 PM   #6 (permalink)
Manager Emeritus
 
v-six's Avatar
 
Join Date: Sep 2004
Location: High Falls, NY
Posts: 2,073
OS: OS X for mac, XP Pro for PC


Send a message via AIM to v-six
Liam, you rock my world
You were right, it was the left and right border of the header.
Here's my final code for the css:
#header {
text-align: center;
margin-right: auto;
margin-left: auto;
position: relative;
height: 70px;
width: 100%;
top: 0px;
background-color: #FBB661;
border-top: 1px solid #000033;
border-right: 0px;
border-bottom: 1px solid #000033;
border-left: 0px;
}
__________________
mysql> --i-am-a-dummy

v-six is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-09-2005, 12:09 AM   #7 (permalink)
Professor/Moderator, TSF Design School
 
Grove's Avatar
 
Join Date: Jun 2005
Location: Australia
Posts: 2,382
OS: Windows XP SP2


Guess you beat me E-Liam.
__________________
==========================================

Get Help:
TSF Security Forum | HijackThis | MB's 5 Step Process
Get Clean:
AdAware SE | Spybot S&D | CWShredder | Ewido | CleanUp!
Get Protected:
SpywareBlaster | SpywareGuard | Windows Updates | IE-SpyAd


If TSF has helped you, please consider making a donation to help keep the board running.
Grove is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 11-09-2005, 06:08 AM   #8 (permalink)
Manager, On the Web
 
E-Liam's Avatar
 
Join Date: Jan 2004
Location: Bracknell, UK
Posts: 929
OS: XP


You're welcome Six.. :)

Grove.. just managed to sneak in while you were getting some shuteye. Time difference across the pond, an' all that.. :)
__________________


My Mother suggested a family outing... so I told her Uncle Bob was gay. (Trevor D.)

Never argue with an idiot! They'll bring you down to their level and beat you with experience.

---------------------------------------------------------------------------------
A member of the Alliance of Security Analysis Professionals since 2004.
E-Liam is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
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

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



All times are GMT -7. The time now is 04:52 PM.



Copyright 2001 - 2008, Tech Support Forum

Search Engine Friendly URLs by vBSEO

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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82