firefox 3.0 display issue with left sidebar

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
pizzaovens1
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 22
Joined: Thu Oct 16, 2008 1:21 pm

firefox 3.0 display issue with left sidebar

Post by pizzaovens1 » Wed Nov 05, 2008 12:32 pm

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

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: firefox 3.0 display issue with left sidebar

Post by mazhar » Wed Nov 05, 2008 12:41 pm

In the CSS locate the following style

Code: Select all

#leftSidebarPanel
and remove the following statement from this style

Code: Select all

display:block;
and test the home page

pizzaovens1
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 22
Joined: Thu Oct 16, 2008 1:21 pm

Re: firefox 3.0 display issue with left sidebar

Post by pizzaovens1 » Wed Nov 05, 2008 1:22 pm

removed, and everything is displaying correctly. thank you very much.

kastnerd
Commodore (COMO)
Commodore (COMO)
Posts: 474
Joined: Wed Oct 22, 2008 9:17 am

Re: firefox 3.0 display issue with left sidebar

Post by kastnerd » Mon Nov 17, 2008 3:28 pm

I found in the admin the Help balloons dose not work in firefox 3.0

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: firefox 3.0 display issue with left sidebar

Post by mazhar » Tue Nov 18, 2008 6:27 am

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.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: firefox 3.0 display issue with left sidebar

Post by mazhar » Fri Nov 21, 2008 9:01 am

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 */
}

Post Reply