IE is ferociously stupid, or it just hates me |
![]() ![]() |
IE is ferociously stupid, or it just hates me |
Sep 14 2008, 05:51 PM
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() Group: Member Posts: 59 Joined: Aug 2008 Member No: 681,928 |
Hello. =)
I think it's time for me to be a bother again, if that's all right. I know, I know, "go away, Nadiyya." But IE is getting on my nerves again. My site looks fine in Firefox. And in Opera. And in Safari. But it's like Microsoft has some sort of grudge against me. This is my problem: ![]() It's a WordPress theme, so I'm not exactly sure how I'd go about posting my codes in here. I guess if any one wants to help out, you can look at the source code? Pain in the ass: http://f.erocio.us Thank you much in advance. =) |
|
|
|
Sep 15 2008, 10:50 AM
Post
#2
|
|
![]() Two can keep a secret if one of them is dead. ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 2,682 Joined: Jun 2005 Member No: 156,187 |
the nav works for netscape, but i do get the feeds/social profile buttons overlapping the calender.
based off the source codes, both are in different tables. have you tried just adding both the buttons and the calender in one table instead? something kinda like this. CODE <table id="Table_01" width="326" height="172" border="0" cellpadding="0" cellspacing="0">
<tr> <td> 1st set of buttons (left)</td> <td rowspan="3"> calender (this ends up on the right side)</td> </tr> <tr> <td> 2nd set of buttons (left)</td> </tr> <tr> <td> 3rd set of buttons (left)</td> </tr> </table> |
|
|
|
Sep 15 2008, 11:47 AM
Post
#3
|
|
![]() Senior Member ![]() ![]() ![]() Group: Member Posts: 59 Joined: Aug 2008 Member No: 681,928 |
I can't, unfortunately. Or maybe I just don't know how to.
The calendar is a WordPress sidebar widget; I don't know if there's a code you can just put into your template to make it show up. I don't want to download any plugins for a calendar, either. The feed icons are put into my layout separately--the calendar, search bar, advertisement, recent posts, and blog roll are all widgets & part of a dynamic sidebar. When I used them as widgets, they end up in lists, like this CODE <ul>
<li><table><tr><td>calendar</td></tr></table></li> <li> <ul> <li>recent entries</li> </ul> </li> <li> <ul> <li>blog roll</li> </ul> </li> </ul> |
|
|
|
Sep 15 2008, 07:42 PM
Post
#4
|
|
![]() Two can keep a secret if one of them is dead. ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 2,682 Joined: Jun 2005 Member No: 156,187 |
since the feeds' codes have like no image tags, makes it hard to figure it out.
um.. well seeing how its all programed to go into that format, have you tried just having a smaller set of feed buttons on the blog its self? or under the intro? i can send some website icon set for feeds your way unless we used the same one, i have that set of buttons. not very good with mods of that nature... although i do mod a ton of scripts i use on my site. but i got backstage access back on topic. i never used li for a website layout pretty need though, i use tables more tables and div layers for padding... probably a hot mess but it gets the job done. but are you in control of where the feeds go? |
|
|
|
Sep 16 2008, 11:03 AM
Post
#5
|
|
![]() Senior Member ![]() ![]() ![]() Group: Member Posts: 59 Joined: Aug 2008 Member No: 681,928 |
I'd prefer to keep the feed icons the way they are, but yes, I have control over them.
I kinda changed this around, since it was so frustrating I've tried adding valign="top" to the cells themselves, and I have td { vertical-align:top; } in my stylesheet. Even put in a !important, but it still didn't work. Any ideas? edit: I figured out the alignment problem. Just used divs instead of tables. This post has been edited by nadiyya: Sep 16 2008, 01:00 PM |
|
|
|
Sep 16 2008, 03:47 PM
Post
#6
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 18,173 Joined: Mar 2005 Member No: 108,478 |
|
|
|
|
Sep 17 2008, 02:51 PM
Post
#7
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 18,173 Joined: Mar 2005 Member No: 108,478 |
Reopened.
|
|
|
|
Sep 18 2008, 03:25 PM
Post
#8
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
IE doesn't deal well with padding, especially with lists.
in your style sheet, you have this: CODE #navigation ul { height:30px; list-style:none; margin:8px 0 0; } #navigation ul li { float:left; } if you add in line-height:30px; to #navigation ul li { }, it should work fine. (30px, because that's the height of the list.) |
|
|
|
![]() ![]() |