Quote:
Originally Posted by Kylsix
1. The title bar of the widget (Offical Content on page) sticks out several pixels past the edge of the rest of the widget below. I've changed shadows, padding, everything I can think of to get that to change. I think it's associated with the width of the widget (a percentage), but I have no idea where it is or how to find it.
|
It's caused by the style variable vbcms_widget_block_padding, which is adding 6px to the edges.
Quote:
2. I want to get rid of the menu expansion within the widget (the '+' or '-' symbol), and have the menus permanently expanded, and not even have the option to close or expand that menu.
|
At the bottom of template vbcms_widget_sectionnavext_page, try commenting out the javascript like this:
Code:
<vb:comment>
<script type="text/javascript">
initVbTreeMenus({vb:raw menu_static});
</script>
</vb:comment>
(or you could just delete the script tags and the line in between).