Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 08-03-2011, 08:47 AM HTML problem with IE
dente's Avatar
Skilled Talker

Posts: 79
Trades: 0
Hello,

Im having a problem with my website when viewing it on IE.
Firefox, Google Chrome and mobile phones are doing fine.

At the index pages you can see prices for my products but when using IE, the prices are more to the left and not in the grey spot where they should be like in firefox and other browsers..

I dont know what the problem is.. can someone help me out with this?

Thank you very much!

Website is in my signature
__________________
Affordable & Quality Servers:
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Bandwidth Pooling Allowed
dente is offline
Reply With Quote
View Public Profile Visit dente's homepage!
 
 
Register now for full access!
Old 08-03-2011, 01:46 PM Re: HTML problem with IE
serandfae's Avatar
Do the "Evil Nanner" !!!

Posts: 9,007
Name: Tim Daily
Location: Apex, NC, US, Sol 3
Trades: 0
What version of IE? I just checked it in IE7 and it's fine. If it's 6, don't bother. Sounds like that doubled-margin when floating in the same direction bug. I mean, if you just gotta, put a conditional comment in for the class the prices are in with a fix just for IE6 to behave, but no one anymore really fixes for it.

tim
__________________
SEO "experts" smell like Big Fish_|_
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

serandfae is offline
Reply With Quote
View Public Profile Visit serandfae's homepage!
 
Old 08-04-2011, 05:27 AM Re: HTML problem with IE
Banned

Posts: 3
Trades: 0
Try to activate the compatibility mode in IE
oberonplatform is offline
Reply With Quote
View Public Profile Visit oberonplatform's homepage!
 
Old 08-04-2011, 07:11 AM Re: HTML problem with IE
dente's Avatar
Skilled Talker

Posts: 79
Trades: 0
Hello,

Thank you very much for looking.
Im using IE8 and the prices are not showing correctly
I also dont know how to activate compatibility mode in IE

Could you please tell me how to do it?

Again, thank you very much.
__________________
Affordable & Quality Servers:
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Bandwidth Pooling Allowed
dente is offline
Reply With Quote
View Public Profile Visit dente's homepage!
 
Old 08-05-2011, 04:08 AM Re: HTML problem with IE
lizciz's Avatar
Super Spam Talker

Posts: 807
Name: Mattias Nordahl
Location: Sweden
Trades: 0
I don't have access to IE8 right now so I can't see the issue. Just looking at your code, the only thing I can think of that may (or may not) help is to add a clearing div after your inline blocks.

HTML Code:
<div class="aligncenter">
   <div class="price">69.</div>
   <div class="point"><span>99</span><span>/month</span></div>
   <div style="clear:both;"></div><!-- THIS LINE IS NEW -->
</div>
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
lizciz is offline
Reply With Quote
View Public Profile Visit lizciz's homepage!
 
Old 08-06-2011, 10:02 AM Re: HTML problem with IE
dente's Avatar
Skilled Talker

Posts: 79
Trades: 0
Thank you for looking at the code.
I tried adding a clearing div, but still no luck, it didnt change.
Is there maybe another solution for it?

Thank you again
__________________
Affordable & Quality Servers:
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Bandwidth Pooling Allowed
dente is offline
Reply With Quote
View Public Profile Visit dente's homepage!
 
Old 08-06-2011, 09:06 PM Re: HTML problem with IE
serandfae's Avatar
Do the "Evil Nanner" !!!

Posts: 9,007
Name: Tim Daily
Location: Apex, NC, US, Sol 3
Trades: 0
OK, finally got to look at it in IE8. I keep 7 on the home comp still because I debug for it far more than 8.

So you have a margin problem that's pushing some of the content to the next line. Looks OK in other browsers, so what you do is put in a conditional comment for IE8 that calls a stylesheet with just the fix for the affected class: the fix being a left margin less than what's in the regular stylesheet.

tim
__________________
SEO "experts" smell like Big Fish_|_
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

serandfae is offline
Reply With Quote
View Public Profile Visit serandfae's homepage!
 
Old 08-07-2011, 12:18 AM Re: HTML problem with IE
Novice Talker

Posts: 6
Trades: 0
If it's really the double-margin bug, you will need to add

display:inline

into the CSS rule for the element in question. Best would be do have this in an own CSS file for IE.
__________________
erfolgreiche Suchmaschinenoptimierung mit artViper(tm) designstudio. Ihre
Please login or register to view this content. Registration is FREE
aus München
artViper is offline
Reply With Quote
View Public Profile
 
Old 08-07-2011, 03:58 AM Re: HTML problem with IE
serandfae's Avatar
Do the "Evil Nanner" !!!

Posts: 9,007
Name: Tim Daily
Location: Apex, NC, US, Sol 3
Trades: 0
Yeah, but that bug is pretty specific to IE6; never seen it in 8. But you are correct in saying that the correction should be specific to IE (in this case IE8) in its own CSS file called on by conditional comments.

Cheers, BTW, zum SEOMensch aus München! It's been years since I went to the Hofbräuhaus or the Deutsches Museum!

tim
__________________
SEO "experts" smell like Big Fish_|_
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

serandfae is offline
Reply With Quote
View Public Profile Visit serandfae's homepage!
 
Old 08-10-2011, 02:28 PM Re: HTML problem with IE
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
IE8 does NOT have the doubled-margin bug, which had more to do with the way it handled floats than margins.

The problem is that IE8 does not support display: inline-block that you have here:
Quote:
.point {
color: #A1A1A1;
display: inline-block;
padding-left: 2px;
text-align: left;


}
You will need conditional comments and a separate css file to target IE8 and change that to display:inline for that browser only.

It is not necessary, and not the best practice, to be adding extraneous code such as divs just to clear floats, there are better methods.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 10-20-2011, 03:27 AM Re: HTML problem with IE
Junior Talker

Posts: 3
Trades: 0
Studying HTML is easy or tough??
chipmunks is offline
Reply With Quote
View Public Profile
 
Old 10-20-2011, 04:58 AM Re: HTML problem with IE
Novice Talker

Posts: 10
Name: Umar Bukhari
Location: Pakistan
Trades: 0
The problem is not about html the problem is in css...
angelsdev is offline
Reply With Quote
View Public Profile Visit angelsdev's homepage!
 
Old 10-21-2011, 07:58 AM Re: HTML problem with IE
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
Originally Posted by ieeeprojects View Post
sorry no idea
Yes! We have noticed this fact!!!
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to HTML problem with IE
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.42115 seconds with 12 queries