Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-05-2011, 01:48 AM   PM User | #1
brat42
New Coder

 
Join Date: Jul 2011
Posts: 38
Thanks: 12
Thanked 0 Times in 0 Posts
brat42 is an unknown quantity at this point
IE Hover and Textbox Width Issue

Hi there,

I have two issues with IE only.

Firstly, in Firefox, the Contact Us page, specifically the "Details" box width is right in Firefox but it is the same width for the full name, email address and phone number etc in IE. Which file and what line do I need to change as I've tried everything! LINK REMOVED BY USER

Secondly, on the Cart page, (please add something to the cart/basket), click "Calculate Shipping", there is a "Cancel" button. When you hover your mouse over it, the text moves but only in IE? I got to the root of the CSS but when I changed the margins for hover, the "Calculate Shipping" hover bit moved instead?!

Thank you very much for any help.

PS, please don't quote my URL.

Last edited by brat42; 11-06-2011 at 09:11 PM..
brat42 is offline   Reply With Quote
Old 11-05-2011, 09:44 AM   PM User | #2
SB65
Senior Coder

 
Join Date: Feb 2009
Location: West Yorkshire
Posts: 2,817
Thanks: 9
Thanked 681 Times in 675 Posts
SB65 will become famous soon enoughSB65 will become famous soon enough
The Contact page is fine in IE8 - but in IE7 the width on that textbox is being set by ie_styles.css at 204px -

Code:
#contact_question {
    background-color: #DDFEAC;
    border: 2px solid #9FCD5A;
    color: #558219;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
	width:204px !important;
}
Your problem on hover, which happens in both IE7 and IE8, is, I think, coming from this in ie_left_style.css.:

Code:
.calculate_shipping a:hover
{
	text-decoration:none;
	font-style:normal;
	font-weight:bold;
	color:#0F8042;
	float:left;
	padding: 0 0 4px 140px;
	margin:7px 0 5px;
	display:block;
	font-size: 14px;
}
SB65 is offline   Reply With Quote
Users who have thanked SB65 for this post:
brat42 (11-06-2011)
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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 +1. The time now is 12:56 AM.


Advertisement
Log in to turn off these ads.