Follow up

Avatar
  • Answered
Please see below. And thank you for your response. Please advise, what line on the style sheet are you looking at?

........................
However if you want to hide that box from the css, in the column-left section, add the following code to the bottom:

display: none;

So, it will look like:

#column-left {
background: white;
position: absolute;
width: 130px;
left: -166px;
top: 0;
padding: 10px;
display: none;




Avatar
JacobIMH
Hello simonbk, and thanks for your question. It looks like you'd want to modify the following stylesheet: /test/catalog/view/theme/simple/stylesheet/stylesheet.css The line in question appears to be 64, and looks like this currently:
 63         /* Left sidebar */
 64         #column-left{background:#fff;position:absolute;width:130px;left:-166px;top:0;padding:10px}
Looks like you just want to tack on display: none; to the end of that. So it would end up looking like:
 63         /* Left sidebar */
 64         #column-left{background:#fff;position:absolute;width:130px;left:-166px;top:0;padding:10px; display: none;}
If you're using the cPanel code editor, you should be able to see the line numbers from there. Let us know if you need anything else. - Jacob