Hi, is there a way for the links not the show under my category images on the main page?
wedding accessories direct dot com (without the spaces)
Thanks
Hi, is there a way for the links not the show under my category images on the main page?
wedding accessories direct dot com (without the spaces)
Thanks
You can do this with a couple of "clever" stylesheet declarations
First... identify the parent CLASS of the element - in your case: .categoryListBoxContents
Then make the link non-visible
.categoryListBoxContents a {visibility:hidden;}
Then make the image link visible
.categoryListBoxContents a img {visibility:visible;}
Just add the whole lot to the very bottom of your stylesheet.css file
.categoryListBoxContents a {visibility:hidden;}
.categoryListBoxContents a img {visibility:visible;}
The ORDER of the above declarations is important...
Did my post help you fix something? You can show your gratitude by buying the the dev team coffee.
Add this to the bottom of stylesheet.css:
.categoryListBoxContents a {visibility: hidden;}
.categoryListBoxContents a img {visibility: visible;}
Thanks, schoolboy.
Not a full solution, but a band-aid, would be to find this section in your stylesheet and modify as shown:
...Or schoolboy's solution, which is somewhat better...Code:/*Category text on main page*/ .categoryListBoxContents { font-size:0.9em; } .categoryListBoxContents a img { margin-bottom: -3em; position: relative; }
display: none; doesn't work right for this use, but visibility: hidden; can do it.
Last edited by gjh42; 8 May 2012 at 06:54 PM.
Bookmarks