12/3 quickinstall of ecommerce quark
http://www.ahgoobaby.com
Please see the attached screen shot in a nexus tablet in portrait view using chrome as an example of the issue. All other related item views (desktop, mobile portrait, mobile landscape, tablet landscape) appear to look correct except tablet portrait. Live example can be found here: http://ahgoobaby.com/index.php/our-store/change/206/22/the-wipes-case/the-wipes-case-retro-daisy-detail.
The issue appears to be that the code you gave in an earlier post did not completely work for this one view (tablet portrait). I've summarized from the previously closed post the fixes that correctly tweaked related items in other views here:
a) Removal of everything except the URL product name link, image and sales price is done with the following code:
@media only screen and (max-width:1040px) {
#gk-menu-overlay-wrap .gkMainMenu .childcontent { display: none !important; }
}
b) Reducing the text for SALES PRICE and the actual sales price number / amount as well as make the font the same as the template:
.product-related-products .PricesalesPrice {
color: #777;
font: italic 400 16px Georgia,Times,Times New Roman,serif;
margin: 0 0 16px;
padding: 0 0 16px;
}
.product-related-products .PricesalesPrice .PricesalesPrice {
color: #26292b;
font: italic 400 20px Georgia,Times,Times New Roman,serif;
margin: 20px 0 0 12px;
}
c. The default template has related items linking to a new tab rather than to the parent tab in the browser. Fix by going to /templates/gk_quark/layouts/blocks and adding the following code JUST BEFORE the google script code. If no google script code then add it to the bottom of the file.
<script type="text/javascript">(function($) {$(document).ready(function() {
function rmTarget() {
$('.product-field-display > a').each(function(){ $(this).removeAttr('target'); });
setTimeout( rmTarget, 1 );
}
$(rmTarget);
});})(jQuery)</script>
As you can see from the screen shot, to conform to the other view fixes you provided above, all text again should be removed except 1) URL product name link, image and sales price, 2) images need to be scaled down to properly fit into the column widths, 3) font the same as the template font.