Hi Guys,
The layout and how the catalogue renders can be controlled/customised via CSS… you need to do it in your theme css not in the plugin css. You can use the !important attribute to override the plugin css.
@anvanamer
Add this code to your theme css to fix your layout:
#wpc-col-2 {
width: 60% !important;
}
And this code to your theme css to change the colour of the category tab rollover:
#wpc-col-1 ul li a:hover, #wpc-col-1 ul li.active-wpc-cat a {
background: #0a0d6b !important;
}
@inetol
I can’t quite see why the catalogue is not staying within the normal body div like content on other pages… I think you need to check your css and make sure your main body content div is styled correctly. You could also try putting the catalogue shortcode within it’s own <p> or <div> within the page.