News:

Support the VirtueMart project and become a member

Main Menu

Hide side menu on product detail page

Started by psm, February 04, 2019, 14:03:40 PM

Previous topic - Next topic

psm

Hello,
I would like to ask you for help. Please, how can I hide or disable side menu showing on my product detail page?

When I set up this in product detail page, it hides also my logo from top of page, because span3 is like vertcal block accross whole page (including logo of shop).

<div class="productdetails-view productdetails">
<style type="text/css">
.row-fluid .span3 {display:none; position: absolute;}
.tmp-content-area {padding: 0% 0% 0% 13%; width: 100%;}
</style>

Thank you very much.

jenkinhill

Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

Studio 42

You should use a more specific rule
#main-content-handler>.row-fluid>.span3{display:none;}
#main-content-handler>.row-fluid>.span9{width:100%;margin-left: 10px;}
You need perhaps to add or remove some padding or margin

psm

Hello thank you very much, it it working now.