black qiuck view, wishlist and compare alignment on catalog products

I have added categories to the home page for the tabs and have an error showing with the black quick view, wishlist and compare buttons.

Could you advise how to repair these please. Image attached and details provided.

Cheers, Dave

Attachment 36629

6 answers

Profile photo of Seoki Lee 1510.00 $tone May 9, 2014
Public

To fix that, please open the file /skin/frontend/default/jm_lingerie/css/styles.css

At line 3071, replace this code:

Code:

.products-grid .add-to-links {
    display: block;
    height: 40px;
    list-style: none outside none;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 5px;
    top: 200px;
    z-index: 3;
}

With:

Code:

.products-grid .add-to-links {
    display: block;
    height: 40px;
    left: 63px;
    list-style: none outside none;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 200px;
    z-index: 3;
}
#1
Profile photo of Dave Curtis 0.00 $tone May 12, 2014
Public

Hi Lee,

Before I make the changes you recommend I want to check this will not effect the category pages that are working fine, see here for example http://boobytraps.com.au/haberdashery -- It is only the home page with this issue http://boobytraps.com.au/

Secondly, see following my code at line 3071 -- it is quite different to yours

.products-grid .add-to-links {
display: block;
padding:0;
list-style:none;
position:absolute;
height:40px;
right:5px;
margin:0;
top:200px;
opacity:0;
-moz-opacity:0;
-khtml-opacity: 0;
-ms-filter:"progidXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index:3;

#2
Profile photo of Seoki Lee 1510.00 $tone May 12, 2014
Public

Please open the file /skin/frontend/default/jm_lingerie/css/styles.css

At line 3071, replace this code:

Code:

.products-grid .add-to-links { 
	display: block; 
	padding:0; 
	list-style:none; 
	position:absolute; 
	height:40px; 
	right:5px;
	margin:0;
	top:200px;
	opacity:0; 
	-moz-opacity:0; 
	-khtml-opacity: 0; 
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index:3;
	
}

With:

Code:

.products-grid .add-to-links { 
	display: block; 
	padding:0; 
	list-style:none; 
	position:absolute; 
	height:40px; 
	left:63px;
	margin:0;
	top:200px;
	opacity:0; 
	-moz-opacity:0; 
	-khtml-opacity: 0; 
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index:3;
	
}

With this change it will not affect the category pages.

#3
Profile photo of Seoki Lee 1510.00 $tone May 23, 2014
Public

To fix that, please open the file /skin/frontend/default/jm_lingerie/css/styles.css

On line 3094, remove this rule:

Code:

.catalog-category-view .products-grid li:nth-child(2n) .add-to-links {
	right: 6px;
}

On line 5925, replace this rule:

Code:

.side-col .jm-product-list li {
    border-bottom: 1px solid #F0F0F0
    margin: 0 !important;
    padding: 20px 0;
}

with:

Code:

.side-col .jm-product-list li {
    border-bottom: 1px solid #F0F0F0
    height: auto;
    margin: 0 !important;
    padding: 20px 0;
}
#6

Please login or Register to Submit Answer

Written By

Comments