chroniker Posted April 6, 2005 Posted April 6, 2005 I don't know how long this has been a problem, for I don't use IE. Recently I made some changes to my site and IE does not like them. All I did (I hope) is resize the entire container, center content and right column area and change the color scheme but now IE is treating some of my links as text instead of as a link. Does anyone have an idea as to way and know how to fix the problem? Quote
chroniker Posted April 6, 2005 Author Posted April 6, 2005 I don't know how long this has been a problem, for I don't use IE. Recently I made some changes to my site and IE does not like them. All I did (I hope) is resize the entire container, center content and right column area and change the color scheme but now IE is treating some of my links as text instead of as a link. Does anyone have an idea as to way and know how to fix the problem? <{POST_SNAPBACK}> Also, in the banner area the coloring does not show up in IE. Quote
thejerm Posted April 6, 2005 Posted April 6, 2005 in your css file the very first thing is >{ margin: 0px 0px 20px 0px; background-color: #D9C2AD; text-align: center; } Should that be: >body { margin: 0px 0px 20px 0px; background-color: #D9C2AD; text-align: center; } you might want to enlose your blogroll in a <div class="link-note"> or us MT-Blogroll written by http://www.movalog.com/ <-- much better than blogrolling. .... on further thought I think the problem maybe due to bad markup. if you go to w3c.org and run a validation check on your site 100+ errors. Quote
owatagal Posted April 6, 2005 Posted April 6, 2005 Looking at your style sheet, I notice that it begins oddly: { margin: 0px 0px 20px 0px; background-color: #D9C2AD; text-align: center; } You need to define what this applies to--I would guess the body element: body { margin: 0px 0px 20px 0px; etc... } Later in the style sheet your banner has an empty background element: #banner {background:; } Also your have a blank ID element in there: #banner-img {} And I think with font names you're supposed to enclose them in quotation marks if the font name is more than a single word. So all your Times New Roman declarations should be "Times New Roman" and Comic Sans should be "Comic Sans MS". I could be wrong on that, and I'm sure someone will correct me if I am. That might be enough to cause IE to do weird things. Add an identifier to the first bit of code, fix the background on the #banner, add something to or delete the #banner-img, and fix the font tags. See if that fixes the IE problems. I don't know what's causing the links to have problems, but it may have to do with that first bit of code, since the links come right after it. One thing you may want to think about--with your container div set at 990px, it's well over the limit for many people's monitors. People with 800x600 resolution are going to be missing about 1/5 of your screen, or will have to scroll horizontally for it. I have 1000-whatever it is resolution, and I still can't get all your page to show up without horizontal scrolls because I have my toolbar running vertically on the left of my screen instead of across the bottom. Quote
chroniker Posted April 6, 2005 Author Posted April 6, 2005 ....on further thought I think the problem maybe due to bad markup. if you go to w3c.org and run a validation check on your site 100+ errors. <{POST_SNAPBACK}> Ouch! I'll have to work on this, thanks. Quote
chroniker Posted April 6, 2005 Author Posted April 6, 2005 Solved the banner problem, and maybe after fixing the problems that the W3C validator found will fix the problem with the links. Thanks. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.