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
firefox 3.0 display issue with left sidebar
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 22
- Joined: Thu Oct 16, 2008 1:21 pm
Re: firefox 3.0 display issue with left sidebar
In the CSS locate the following style
and remove the following statement from this style
and test the home page
Code: Select all
#leftSidebarPanel
Code: Select all
display:block;
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 22
- Joined: Thu Oct 16, 2008 1:21 pm
Re: firefox 3.0 display issue with left sidebar
removed, and everything is displaying correctly. thank you very much.
Re: firefox 3.0 display issue with left sidebar
I found in the admin the Help balloons dose not work in firefox 3.0
Re: firefox 3.0 display issue with left sidebar
Thanks for the information. I have verified the issue and a new bug have been logged.I found in the admin the Help balloons dose not work in firefox 3.0
Re: firefox 3.0 display issue with left sidebar
You can make these help balloons work in firefox with following changes.I found in the admin the Help balloons dose not work in firefox 3.0
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;
}
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 */
}