fluffybunnies82
Member
Posted 1 year ago #
I can't seem to get rid of the widget title above my tags. I can't find anything in the CSS or the sidebar file. Here's my website: http://www.gleefulthings.com/blog/ it's towards the bottom of the left sidebar.
Is there a code for a tag cloud that I can insert into a text widget? I'm trying to put image titles, so I can't have that text title there.
the css class of this tag cloud title is:
.widget_tag_cloud h2
to hide it, you could for instance use:
.widget_tag_cloud h2 { visibility: hidden; }
however, this might interfere with your way of adding the image title.
what method have you used to remove the other widget titles and put the image there?
fluffybunnies82
Member
Posted 1 year ago #
For the others, I've only had to delete the text that I was in the title and it went away.
The code you gave me did get rid of it but now there's a big ugly gap where it used to be. Is there any other way to go about this that won't leave that gap there?
because i was not sure if you would need the h2 element for your image, i suggested 'visibility: hidden;' as this leaves the html element in place;
as you obviously don't need it, you can use 'display: none;'
.widget_tag_cloud h2 { display:none; }
fluffybunnies82
Member
Posted 1 year ago #
Thank you! problem solved! :)