Grouped Product Page

Hello,
I decreased the size of price and now it is noticeable that it is left justified.  Could you help me with making this right justified?

http://magentotest.benedictpress.com/index.php/sinners-guide-1558.html
Also on grouped pages is there anyway to add the qty increments like on single pages instead of filling in the QTY?

Qty:

--

+

Thank you

4 answers

Profile photo of Mall Staff 184060.00 $tone March 17, 2015
Public

Hi tswec0e5,

I decreased the size of price and now it is noticeable that it is left justified.  Could you help me with making this right justified?

=> You can open the CSS file at /skin/frontend/default/jm_book/css/styles.css and find to block code in line 6670:

.product-view .price-box .special-price, .product-view .price-box .old-price {
    display: inline-block;
    float: left;
    line-height: 100%;
    margin: 0 5px 0 0;
    padding: 0;
}

and replace by block code:

.product-view .price-box .special-price, .product-view .price-box .old-price {
    display: inline-block;
    float: right;
    line-height: 100%;
    margin: 0 5px 0 0;
    padding: 0;
}

 Also on grouped pages is there anyway to add the qty increments like on single pages instead of filling in the QTY?

=> This is out of support scope of theme. This is not feature of Magento Core. Please hire a freelancer or submit you request  to us via http://www.ubertheme.com/magento-custom-services/ and our  team will check and send you the estimation soon

Regards,
Mall.

#1
Profile photo of Ziven Staff 100280.00 $tone March 18, 2015
Public

Hi Tswec,
Please go to the file: skin/frontend/default/jm_book/css/styles.css  at line 6670 and change the code like below:

.product-view .price-box .special-price, .product-view .price-box .old-price {
display: inline-block;
float: left;
line-height: 100%;
margin: 0 5px 0 0;
padding: 0;
}

replace to

.product-view .price-box .special-price, .product-view .price-box .old-price {
display: inline-block;
float: none;
line-height: 100%;
margin: 0 5px 0 0;
padding: 0;
}

 
Best Regards,
Ziven.
 
 

#3

This question is now closed

Written By

Comments