Hi Scott
Love your work mate!!
This is not really a bug per se, but rather a conflict with some other CSS in another DNN plugin, specifically, the RAD menu from telerik.
Specifically, I have tracked the problem to the ".item" selector in your CSS.
.item {padding: 10px 10px;color: #B2B2B2;}
In looking at your CSS, I might suggest that you add some specificity to all of of your your selectors. For example, ".item" is rather generic and could be used by alot of other modules, menus, etc.
This issue could be easily solved by simply wrapping your module in a div element with id=Ventrian and then your CSS becomes "#Ventrian .item".
For an example of why this is a problem, please check the following links:
Base skin: www.GeorgiaRacquetball.com
Problem: www.georgiaracquetball.com/Photos/tabid/3210/Default.aspx
You can see the menu is messed up because the CSS from the SimpleGallery module is adding 10px padding to each menu item which is defined with class="item". The CSS for the menu uses decendant selectors (".radmenu .item") to specifically target these items. However, I think your generic ".item" class overides these definitions.
|