News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Specific Category/Product Page CSS Override without new template

Started by PRO, November 28, 2011, 23:36:43 PM

Previous topic - Next topic

PRO

There is no reason to create a new override template just to change SIMPLE css for specific categories, or product pages.

What you can do is wrap your category with a div class tag thats unique per the category id. Like this.
Place this code above where the html starts in your category default.php , or override file.
<div class="h<?php echo JRequest::getInt('virtuemart_category_id'); ?>">

THEN, make sure to close it at the bottom. </div>

You can also do the same with the product page.
<div class="h<?php echo JRequest::getInt('virtuemart_product_id'); ?>">

then you can just add specific styles like this.
.h11 .spacer{height:237px;}

^ where the 11 is the category id.

maxispin

Could you please tell for a php noob, where .h1 .spacer{height:237px;} is inserted?
VM 3.0.17.6 | VM 2.0.24c | VM 1.1.9

PRO

Quote from: maxispin on March 04, 2012, 18:24:42 PM
Could you please tell for a php noob, where .h1 .spacer{height:237px;} is inserted?

.h11 .spacer{height:237px;}

IS the css. BUT thats what I use to make borders around products , and I want the product borders to be specific sizes for different categories.

What are you wanting to change?

All my code does is make a dynamic class to have the ability to change the category css, without doing a whole new template override

maxispin

Basically I just need to fine tune product category font sizes and colors.

I understood that that line should be inside the css-file.   

I am not sure if this file is the "core" css file:  /public_html/components/com_virtuemart/assets/css/vmsite-ltr.css (?)

Overally, I am a bit confused with dozens of different files the system is constructed off. Possibilities are endless but it is a bit complecated if the user as me have no coding experience, and everything has to be done via trial and error.

Css files are something I am going to hack next.
VM 3.0.17.6 | VM 2.0.24c | VM 1.1.9

PRO

Quote from: maxispin on March 04, 2012, 20:50:11 PM
Basically I just need to fine tune product category font sizes and colors.

I understood that that line should be inside the css-file.   

I am not sure if this file is the "core" css file:  /public_html/components/com_virtuemart/assets/css/vmsite-ltr.css (?)

YES thats the file.

BUT::: my code is if you want to have different fonts per category. Or if you want o change just 1 category font.

http://forum.virtuemart.net/index.php?topic=90935.0

maxispin

VM 3.0.17.6 | VM 2.0.24c | VM 1.1.9