PDA

View Full Version : IE and font-size 0px


brandofamily
May-23-2008, 06:35 PM
FireFox does not mind font-size:0px, but IE does. Any way to work around this?
View this page in IE and you'll see a few dots above the albumNav box....

http://www.brandolinoimaging.com/popular/1#107834684_oUoHZ

I'm trying to hide parts of breadcrumb with this code...

/*****************************************/
/*Popular Gallery SingleImage Adjustments*/
/*****************************************/

.popularGallery #breadcrumb {display:block !important; font-size:0px;}
.popularGallery #breadcrumb a.nav {display:none;}
.popularGallery #breadcrumb a.title {display:block; font-family:"Gentium","Times New Roman", times, serif !important; font-style:normal; font-weight:normal; font-size:14px !important; position:absolute; margin-top:53px; ~margin-top:40px; _margin-top:35px; margin-left:250px;}
.popularGallery #breadcrumb a.note {display:none !important;}


if you click an iamge in allThumbs view you'll see a "Return to Gallery" link... that's part of the breadcrumb...

TexasFamily
May-23-2008, 08:45 PM
have you tried this...?

.popularGallery #breadCrumbTrail {display:none !important;}
Edward

brandofamily
May-24-2008, 03:11 AM
have you tried this...?

.popularGallery #breadCrumbTrail {display:none !important;}
Edward

Thanks, but that will not do it. Did you look art the code and the page I listed to see what I'm trying to accomplish?

TexasFamily
May-24-2008, 06:13 AM
sorry Anthony...i must have been asleep at the keyboard...

what about changing the breadcrumb color to black?
since the top half of your background-color is black...

Edward


/*****************************************/
/*Popular Gallery SingleImage Adjustments*/
/*****************************************/

.popularGallery #breadcrumb {color:#000000; display:block !important; font-size:0px;}
.popularGallery #breadcrumb a.nav {display:none;}
.popularGallery #breadcrumb a.title {display:block; font-family:"Gentium","Times New Roman", times, serif !important; font-style:normal; font-weight:normal; font-size:14px !important; position:absolute; margin-top:53px; ~margin-top:40px; _margin-top:35px; margin-left:250px;}
.popularGallery #breadcrumb a.note {display:none !important;}

brandofamily
May-24-2008, 06:43 AM
sorry Anthony...i must have been asleep at the keyboard...

what about changing the breadcrumb color to black?
since the top half of your background-color is black...

Edward


/*****************************************/
/*Popular Gallery SingleImage Adjustments*/
/*****************************************/

.popularGallery #breadcrumb {color:#000000; display:block !important; font-size:0px;}
.popularGallery #breadcrumb a.nav {display:none;}
.popularGallery #breadcrumb a.title {display:block; font-family:"Gentium","Times New Roman", times, serif !important; font-style:normal; font-weight:normal; font-size:14px !important; position:absolute; margin-top:53px; ~margin-top:40px; _margin-top:35px; margin-left:250px;}
.popularGallery #breadcrumb a.note {display:none !important;}

tried that... no good...

TexasFamily
May-24-2008, 09:39 AM
did you try changing the font size to 1px...or not setting font size at all...
and then setting the color to black...maybe the 0px is causing an error for IE

we are off to a birthday party...ill try and think of something else that might work for you.

Edward

brandofamily
May-24-2008, 09:52 AM
did you try changing the font size to 1px...or not setting font size at all...
and then setting the color to black...maybe the 0px is causing an error for IE

we are off to a birthday party...ill try and think of something else that might work for you.

Edward
yes tried that too... thanks for trying