[SOLVED] White Space in Firefox

This is a discussion on "[SOLVED] White Space in Firefox" within the Starting Out section. This forum, and the thread "[SOLVED] White Space in Firefox are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Starting Out

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Oct 30th, 2007, 21:48
New Member
Join Date: Oct 2007
Location: HOUSE
Age: 30
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Question [SOLVED] White Space in Firefox

Hi everyone.

I'm in the process of making a website but i've run into a problem.

I have some thumbnail pictures which when clicked on show the full picture in a pop up window.

Everything works fine in IE but when I try it in Firefox I always have a white space at the bottom of the pop up.

I'm pretty sure this shouldn't be there as i've set the pop up window to the exact same size as the image.

To see what i mean go here:

www.kelseydelo.com , select portfolio and then click on one of the thumbnails.

As i mentioned the problem only seems to appear in firefox.

Any help would be appreciated as this is really bugging me.

thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Oct 30th, 2007, 22:11
alexgeek's Avatar
Moderator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,812
Blog Entries: 9
Thanks: 2
Thanked 2 Times in 2 Posts
Re: White Space in Firefox

I have no whitespace in FF with those images.
Maybe post a screen shot of what you see?
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Oct 30th, 2007, 22:20
Junior Member
Join Date: Oct 2007
Location: Sweden
Age: 29
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Re: White Space in Firefox

me neither, no whitespaces

you also have errors, slide2 is not defined and some css errors

Last edited by aihazm; Oct 30th, 2007 at 22:22.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Oct 30th, 2007, 22:37
New Member
Join Date: Oct 2007
Location: HOUSE
Age: 30
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: White Space in Firefox

thanks for having a look. heres a screen shot of what i see.

http://img266.imageshack.us/img266/6...itelineci9.png

i guess it may just be a problem with my browser which is good news.

could you explain what what the css errors are and how i could fix them?

i'm kind of new to this whole thing.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Oct 30th, 2007, 22:40
alexgeek's Avatar
Moderator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,812
Blog Entries: 9
Thanks: 2
Thanked 2 Times in 2 Posts
Re: White Space in Firefox

Wierd I don't get that at all.
What Operating System are you on? I don't recognize that theme.
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Oct 30th, 2007, 22:43
New Member
Join Date: Oct 2007
Location: HOUSE
Age: 30
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: White Space in Firefox

windows xp.

i'm using window blinds which maybe explains the different theme. maybe thats whats causing the white stripe somehow.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Oct 31st, 2007, 06:49
Junior Member
Join Date: Oct 2007
Location: Sweden
Age: 29
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Re: White Space in Firefox

Quote:
Originally Posted by a1anm View Post
windows xp.

i'm using window blinds which maybe explains the different theme. maybe thats whats causing the white stripe somehow.
try to remove <p> tag
<p>
<img width="385" height="650" border="0" src="../../Portfolio%20Pics/Dana2.jpg"/>


</p>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Oct 31st, 2007, 11:56
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: White Space in Firefox

Wow ... amazing how many errors you can find in only a few lines of code

HTML: Select all
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Kelsey Delo - Portfolio</title>
<body style="margin:0px;" marginheight="0" marginwidth="0" margintop="0" marginbottom="0" marginleft="0" marginright="0">
</head>

<body>

<p>
<img border="0" src="../../Portfolio%20Pics/i%20wedding.JPG" width="650" height="488"></p>

</body>

</html>
1. Add a DOCTYPE
2. You have the wrong character set. Have a look at my blog entry Make your HTML efficient. There's a section about it there. You should be using UTF-8 or ISO 8859-1.
3. why is there 2 <body> tags
4. <body> should be after <head> ... </head>
5. all the attributes (except the style=" ") in the 1st body tags are deprecated
6. you are missing alt attribute to your image

Now ... to fix your white-space issue, try doing what aihazm said and remove the <p> tags around your image. Other thing you can do is add padding: 0; to the style="margin: 0;" that you have already.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Oct 31st, 2007, 19:21
New Member
Join Date: Oct 2007
Location: HOUSE
Age: 30
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: White Space in Firefox

thanks for the tips. i will try and fix those things.

i have found out that the 'download status bar' plugin for firefox was causing the white lines.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Oct 31st, 2007, 19:45
alexgeek's Avatar
Moderator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,812
Blog Entries: 9
Thanks: 2
Thanked 2 Times in 2 Posts
Re: White Space in Firefox

There we go.
Could you mark this as sovled now via thread tools at the top?
Thanks
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
ie6 white space under div AndrewChip Web Page Design 1 Jun 11th, 2008 13:15
Add white space using RegEx Access JavaScript Forum 2 Feb 8th, 2008 03:30
Big white space mikemay123 Web Page Design 5 Nov 6th, 2007 00:30
[SOLVED] white-space mcdanielnc89 Web Page Design 5 Oct 8th, 2007 16:48
white space at top of page mdb01 Web Page Design 2 Nov 26th, 2006 21:39


All times are GMT. The time now is 18:12.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization 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