16
Customization help / Re: Image Background On Homepage
« on: August 10, 2018, 04:50:36 PM »
Unfortunately, there is no css class or ID to identify main page
You would need to add some logic to page.tpl template
https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/template/common/page.tpl
For instance, you can put below code in the body and limit your CSS to page what you need
You would need to add some logic to page.tpl template
https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/template/common/page.tpl
For instance, you can put below code in the body and limit your CSS to page what you need
Code: [Select]
<body class="<?php echo str_replace("\\", "-", $this->request->get['rt']); ?>">