Page 1 of 1
firefox 3.0 display issue with left sidebar
Posted: Wed Nov 05, 2008 12:32 pm
by pizzaovens1
The home page of my current site is not displaying correctly in firefox 3.0, it does work in IE and firefox 2.0. after spending a day trying to single out where the problem is i am at my wits end. it seems to not be in the style.css or the three column scriplett. Has anyone else had this issue from firefox 2.0.0 to 3.0?
http://98.129.12.138/pizzaovens/Default.aspx
Re: firefox 3.0 display issue with left sidebar
Posted: Wed Nov 05, 2008 12:41 pm
by mazhar
In the CSS locate the following style
and remove the following statement from this style
and test the home page
Re: firefox 3.0 display issue with left sidebar
Posted: Wed Nov 05, 2008 1:22 pm
by pizzaovens1
removed, and everything is displaying correctly. thank you very much.
Re: firefox 3.0 display issue with left sidebar
Posted: Mon Nov 17, 2008 3:28 pm
by kastnerd
I found in the admin the Help balloons dose not work in firefox 3.0
Re: firefox 3.0 display issue with left sidebar
Posted: Tue Nov 18, 2008 6:27 am
by mazhar
I found in the admin the Help balloons dose not work in firefox 3.0
Thanks for the information. I have verified the issue and a new bug have been logged.
Re: firefox 3.0 display issue with left sidebar
Posted: Fri Nov 21, 2008 9:01 am
by mazhar
I found in the admin the Help balloons dose not work in firefox 3.0
You can make these help balloons work in firefox with following changes.
Edit the style.css file of the admin theme and locate the following code
Code: Select all
a.toolTipHover
{
z-index:25;
text-decoration:none;
/* Added for tool tip icon*/
padding-right:12px;
background-image:url(images/icons/tooltip.gif);
background-repeat:no-repeat !important;
background-position:right top;
position:relative;
}
and make it look like
Code: Select all
a.toolTipHover
{
z-index:25;
text-decoration:none;
/* Added for tool tip icon*/
padding-right:12px;
background-image:url(images/icons/tooltip.gif);
background-repeat:no-repeat !important;
background-position:right top;
/* position:relative;*/
position:relative !ie; /* will be applied only on IE */
}