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.

CSS Forum


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



Reply
Old 09-09-2009, 03:00 AM IE Layout Issues
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
I just started a project that will use a css layout instead of a table layout. I'm having a few issues getting IE to look the same as FF. I dont get any errors from validation either. The text padding isn't done for the left side or the content, but thats not an issue I just haven't done it yet. Here's a link. http://webforcestudio.com/blog_design/blog.htm.Thanks.
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!

Last edited by Silent77; 09-09-2009 at 03:08 AM..
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
 
Register now for full access!
Old 09-09-2009, 11:52 AM Re: IE Layout Issues
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Let me guess, you're using Dreamweaver in WYSIWYG mode ???

You do not need, nor do you want all that absolute and relative positioning. IE 6 & 7 specifically have some major problems with it. Learn to use the normal document flow and get rid of the positioning.

You should also have your CSS in an external stylesheet, not inline as you have it.
__________________
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 09-09-2009, 04:08 PM Re: IE Layout Issues
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
Quote:
Originally Posted by LadynRed View Post
Let me guess, you're using Dreamweaver in WYSIWYG mode ???
No, I'm not using dreamweaver, I'm using visual studio.

Quote:
Originally Posted by LadynRed View Post
You do not need, nor do you want all that absolute and relative positioning. IE 6 & 7 specifically have some major problems with it. Learn to use the normal document flow and get rid of the positioning.
As I said before... first time trying a CSS layout... so... some links would be great. I'm trying to do a fixed width layout and I don't really understand how to do image borders with css like I have on the post area. I was using the positioning to put the corner images in the correct place within a relative positioned div.

Quote:
Originally Posted by LadynRed View Post
You should also have your CSS in an external stylesheet, not inline as you have it.
All of the css is inline because it's pointless to put it in an external sheet at this point.
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 09-09-2009, 04:15 PM Re: IE Layout Issues
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
DW, Vis Studio, FrontPage doesn't really matter, ALL WYSIWYG suffer similar problems with bloated, impossible to maintain code.

It is NEVER too soon to put the CSS in an external stylesheet, that's where it should be from the start of the project.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 09-09-2009, 04:26 PM Re: IE Layout Issues
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
I'm not using a WYSIWYG editor... and it doesn't matter if the css is inline or external... that has absolutely no effect on my code...
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 09-09-2009, 04:29 PM Re: IE Layout Issues
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
40 layouts:
http://blog.html.it/layoutgala/

More here:
http://www.maxdesign.com.au/presentation/page_layouts/

There are lots of ways to do rounded corners:
http://www.smileycat.com/miaow/archives/000044.php

Quote:
that has absolutely no effect on my code...
Sure it does.. it bloats it. Look at all the work you're creating for yourself when it's time to get it out of your code. Try using a developers tool like FireBug in Firefox, and you can test changes in css all you want w/o affecting the actual file - until you're ready to.
__________________
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


Last edited by LadynRed; 09-09-2009 at 04:31 PM..
LadynRed is offline
Reply With Quote
View Public Profile
 
Old 09-10-2009, 11:58 PM Re: IE Layout Issues
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
Thanks for the links. Re-coded it... Now im having a border issue. The borders don't show up in FF and only has a height of like 20 pixels in IE. Any ideas?

http://webforcestudio.com/blog_design/index.htm

Thanks.
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 09-14-2009, 05:33 PM Re: IE Layout Issues
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
The height is defaulting to the height of the text you have inside it. If you want it to be bigger than that, then use min-height on that area. However, IE 6 does not understand min/max height or width, you will need to feed IE6 a fixed height using conditional comments and a separate css file with JUST that 'fix' in it.
__________________
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 09-15-2009, 02:26 AM Re: IE Layout Issues
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
Yeah I kinda figured it was the height. I was thinking about making it into one big image with white in the middle and set it to the background of a wrapper.
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 09-15-2009, 04:51 PM Re: IE Layout Issues
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Quote:
I was thinking about making it into one big image with white in the middle
That's rarely a good idea, what happens when the box needs to stretch ?
There are other ways around that, like putting the top and bottom in as backgrounds in separate divs above and below a div with a white background that will stretch.
__________________
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 09-15-2009, 06:27 PM Re: IE Layout Issues
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
the box doesn't need to stretch for this layout, it's fixed width, so it should be fine. yes, when using a liquid layout it would not work but that's not the layout I'm using with the project. the background is a temporary fix... that is until I try a stretchable layout lol.
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 09-16-2009, 04:06 PM Re: IE Layout Issues
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Quote:
the box doesn't need to stretch for this layout
Ok, but what happens when someone increases the size of their text in their browser settings ???
__________________
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
 
Reply     « Reply to IE Layout Issues
 

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.38524 seconds with 12 queries