Please Help-->Problem with rounded corners in IE

This is a discussion on "Please Help-->Problem with rounded corners in IE" within the Web Page Design section. This forum, and the thread "Please Help-->Problem with rounded corners in IE 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 Jul 6th, 2006, 14:51
New Member
Join Date: Jul 2006
Location: Cairns
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Please Help-->Problem with rounded corners in IE

Gidday gang,

I'm currently designing a site that involves some content boxes with rounded corners. While the site comes out fine in Firefox, the content boxes seem to have a consistent problem in Internet Explorer:

Underneath the bottom of the (rounded) content box, there's a straight line, about 3 pixels high, of the same background colour as the content box. I can't seem to figure out why it's there or - more pressingly - how to get rid of it. The problem can be seen at http://www.phonehold.com.au/phonefacts.html Below is the CSS & HTML I'm using to make my rounded corners. Any help at all would be extremely appreciated.

Cheers gang,
- JB


HTML:



Code: Select all
  <div class="contentbackgroundsmall">
   <div class="roundtop"><img src="tl.gif" alt="" 
     width="16" height="15" class="corner" 
     style="display: none" />   </div><div class="textmargin">
          <p>&quot;Callers with silence on hold will abandon their calls in less than one minute, 90% hang up within 40 seconds. Callers with information on hold will stay on the line for up to three minutes longer.&quot; 
          <p><EM><STRONG>- North American Telecom</STRONG></EM></p></div> 
   <div class="roundbottom">
     <img src="bl.gif" alt="" 
     width="16" height="15" class="corner" 
     style="display: none" /></div>
 </div></p>
CSS:
Code: Select all
.contentbackgroundsmall {
    background-color: #0088ee;
    width: 520px;
    color: #EEEEEE;
    font-size: 12px;
    background-image: url(contentbackgroundtiny.jpg);
    background-repeat: repeat-x;
}

.roundtop {
    background: url(tr.gif) no-repeat top right;
}

.textmargin {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
}

.roundbottom {
    background: url(br.gif) no-repeat top right; 
}
[/code]
Reply With Quote

  #2 (permalink)  
Old Jul 6th, 2006, 15:16
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 22
Posts: 1,619
Blog Entries: 1
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via ICQ to spinal007 Send a message via MSN to spinal007 Send a message via Yahoo to spinal007 Send a message via Skype™ to spinal007
Re: Please Help-->Problem with rounded corners in IE

try these:
- .roundbottom {
background: url(br.gif) no-repeat bottom right;
}

- add display:block; to your divs

- make sure margin:0px; on images and divs

I always have this constant fight with IE and Firefox... Drives me insane!!!!!!!!!!!
Welcome to the club!
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)

Last edited by spinal007; Jul 8th, 2006 at 09:24.
Reply With Quote
  #3 (permalink)  
Old Jul 6th, 2006, 17:01
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,730
Blog Entries: 1
Thanks: 0
Thanked 16 Times in 16 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: Please Help-->Problem with rounded corners in IE

.roundbottom {
overflow:hidden; /* will fix it */
background: url(br.gif) no-repeat top right;
}
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #4 (permalink)  
Old Jul 6th, 2006, 17:11
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 22
Posts: 1,619
Blog Entries: 1
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via ICQ to spinal007 Send a message via MSN to spinal007 Send a message via Yahoo to spinal007 Send a message via Skype™ to spinal007
Re: Please Help-->Problem with rounded corners in IE

Quote:
Originally Posted by moojoo
overflow:hidden; /* will fix it */
yep, that should work...
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #5 (permalink)  
Old Jul 6th, 2006, 22:55
New Member
Join Date: Jul 2006
Location: Cairns
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Please Help-->Problem with rounded corners in IE

*standing ovation*
*rapturous applause*
*throws underpants*

Many many thanks Spinal - very much saved my skin. If ever you need a kidney or anything let me know.
Reply With Quote
  #6 (permalink)  
Old Jul 7th, 2006, 08:59
minute44's Avatar
Moderator
Join Date: Apr 2006
Location: Nottingham UK
Age: 24
Posts: 1,347
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to minute44
Re: Please Help-->Problem with rounded corners in IE

Quote:
Originally Posted by SuperGrover1981
*standing ovation*
*rapturous applause*
*throws underpants*

Many many thanks Spinal - very much saved my skin. If ever you need a kidney or anything let me know.
Jeez, generous guy!
Last Blog Entry: Annoying people.... (Jan 16th, 2008)
Reply With Quote
  #7 (permalink)  
Old Jul 8th, 2006, 09:24
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 22
Posts: 1,619
Blog Entries: 1
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via ICQ to spinal007 Send a message via MSN to spinal007 Send a message via Yahoo to spinal007 Send a message via Skype™ to spinal007
Re: Please Help-->Problem with rounded corners in IE

* blushing *
Let's not forget moojooo though, overflow:hidden; has worked for me many times...
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
Reply

Tags
helpgtproblem, rounded, corners

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
Rounded Corners Aaron1988 Web Page Design 22 Apr 18th, 2007 19:15
css rounded corners geoffmuskett Web Page Design 8 Jan 4th, 2007 20:40
Css rounded div corners AdRock Web Page Design 2 Aug 7th, 2006 13:25
Rounded corners 1 pixel out in IE hessodreamy Web Page Design 1 Jan 17th, 2006 15:44
Tables with rounded corners Ice288 Web Page Design 3 Jul 12th, 2005 18:12


All times are GMT. The time now is 03:42.


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