My Prototype tab has no space between the image and title but the others do? Why? I want no space between the image and title just like the Prototype sites tab.
Not sure what happened but now there is a space between the image and title for Prototype Sites. I would like the way it was before with no space.
arimakidd
You can try with this custom CSS:
#zentools-103 .zt-image.zt-shadow img { margin-bottom: 0; }
This only work for the article in the 'Prototype Sites' tab. It didn't work for the others.
with #zentools-103 this is a modules ID - each zentools module has its own unique id number - you can either see it in module manager or via inspecting the source code
Try replacing the module id with the position name
Cheers Paul
This didn't work #zentools-tabs .zt-image.zt-shadow img { margin-bottom: 0; }
nor did #tabs .zt-image.zt-shadow img { margin-bottom: 0; } nor
template position name has the id of tabwrap
or further down the code it would be a class of zen-nav-tabs e.g .zen-nav-tabs
so you would try #tabwrap or .zen-nav-tabs
Okay, #tabwrap worked. Thanks. Solved.
Thanks
I'll mark this as resolved