PDA

View Full Version : a little help debugging ie? :rolleyes:




majorp
Feb 1, 2007, 11:56 AM
removed to avoid google listing. thanks



iMeowbot
Feb 1, 2007, 01:49 PM
Try replacing your .menu_section li a CSS block with these two, so that <a> isn't treated as yet another block.


.menu_section li {
display: block;
padding: 5px;
background-color: #cfcfcf;
margin: 0 0 1px 0;
}

.menu_section li a {
color: #fff;
text-decoration: none;
}


(by the way, this change is tested.)

[ edit: if you really really wanted the text in the .description text to be raised, add a smaller line-height (say, 1em) to the .description section ]

LtRammstein
Feb 1, 2007, 03:27 PM
I don't know if this will help, but defining the position of the description my help. In CSS just do position:absolute.

Then again, I've never seen something like this before... Man that's weird!

Steve

WildPalms
Feb 1, 2007, 03:32 PM
Thats IE < 6.x for ya. -rolls eyes-

majorp
Feb 1, 2007, 07:11 PM
Try replacing your .menu_section li a CSS block with these two, so that <a> isn't treated as yet another block.


.menu_section li {
display: block;
padding: 5px;
background-color: #cfcfcf;
margin: 0 0 1px 0;
}

.menu_section li a {
color: #fff;
text-decoration: none;
}


(by the way, this change is tested.)

[ edit: if you really really wanted the text in the .description text to be raised, add a smaller line-height (say, 1em) to the .description section ]

arrgg, perfect cheers!

no the description text raised was something that just happend. in the middle is how i really wanted it.

thanks very much :D