GeneralThis forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hi, sorry for posting a completely windows question, but there's a lot of people in this forum with a great knowledge about this kind of stuff, and also the linux community tends to respond a lot quicker
The thing is that I created my very first page yesterday using DreamweaverMX 2004 and a predefined CSS style with left navigation and 2 columns, and the thing is that when I use Internet Explorer to see it, sometimes it cuts a part of the information I put in the right side, in firefox works fine.
I know a little bit of html so I looked at it in Dreamwever but I didn't find anything unusual.
so you know "html" big deal. But do you know "iehtml"? No, ok then, dont bother googling, i made that word up. m$ has IE use broken html, nonstandard stuff, and lack of stuff, what you are seeing might be the result of that. I stress "might". But i am suprised something as popular as dreamwhatever doesnt get IE right, usally, its the mozilla rendering that most people complain about.
My impression is that, if you follow the instructions in most books, ANY browser will read it. Suggest you post some code snippets, so we can see what the issue might be.
This is the link to the page, if you check the "Miembros" link you will see that it resizes randomly if you use IE, and sometimes you can only see a part of the content.
If you hover the mouse over the links in the left side it'll also resize.
PD: Thank's for the quick reply, you guys are the best
I see what you mean. It's definitely a CSS issue. IE is very finicky about widths, heights, paddings, margins etc. Post your CSS here so that people can see what is wrong with it.
Incidentally my own blog was rendering like crap in IE till recently and then I had to remove some unnecessary padding and widths in the CSS. One problem is that paddings affect the overall width of DIV in IE while it doesn't in most other browsers.
In my findings, IE is the worst when it comes to rendering CSS. That is the one thing that always gets me as I design pages that work with W3C standards before I code for IE, if it's really bad, I'll find a workaround though.
#globalNav{
color: #cccccc;
padding: 0px 0px 0px 10px;
white-space: nowrap;
}
/* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
this will force a horizontal scrollbar if there isn't enough room for all links
remove rule or change value to 'normal' if you want the links to line-wrap */
.feature img{
float: left;
padding: 0px 10px 0px 0px;
margin: 0 5px 5px 0;
}
/* adjust margins to change separation between the feature image and text flowing around it */
#siteInfo{
clear: both;
border: 1px solid #cccccc;
font-size: 75%;
color: #cccccc;
padding: 10px 10px 10px 10px;
margin-top: -1px;
}
/* negative top margin pulls siteinfo up so its top border overlaps (and thus lines up with)
the bottom border of the navBar in cases where they "touch" */
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.