small css problem

This is a discussion on "small css problem" within the Web Page Design section. This forum, and the thread "small css problem are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 22nd, 2007, 16:26
New Member
Join Date: Mar 2007
Location: UK
Age: 41
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
small css problem

I have a hobby website designed in dreamweaver 8, its done in CSS
the one problem i have is that the site when viewed in firefox it looks right, but in IE7 there is an extra space after the last link in the left hand box (after the florist link) this is my first ever CSS site design so be gentle with me
any advice or help appreciated
http://www.bikerlifestyle.co.uk/

Mark
Reply With Quote

  #2 (permalink)  
Old Mar 22nd, 2007, 17:40
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: small css problem

It could be the fact that you wrapped all the images in a <p> tag ... All elements have default margins and padding so ... it might be that the padding and margin are affecting it.

Try resetting them.

If you want to reset all margin and padding to 0 for all the element you can do

Code: Select all
html, body, p, ul, ol, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
or
Code: Select all
* {
  margin: 0;
  padding: 0;
}
No Margin For Error
Reply With Quote
Reply

Tags
firefox, ie7, space

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
Small php table Oak PHP Forum 32 Mar 7th, 2008 09:03
a small bug in IE geyids Web Page Design 8 Jan 20th, 2008 00:49
My Blog Engine...small problem! 1840dsgn PHP Forum 1 Jul 7th, 2007 08:38
A Small layout problem in IE6 but not in Firefox leroytrolley Web Page Design 1 Jul 5th, 2007 12:49
Need small help with pagination ofi PHP Forum 0 Feb 7th, 2007 11:44


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


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