I have allready settled that, but still no change. the funny thing is, that this appeared right after i installed categories dressing and it only appears on the first page....
Printable View
I installed the categories dressing. In the admin I have it on for right side column only. The menu doesn't show in the website. Does someone know what I need to get the menu to show? I have re-installed 2 times to be sure I didn't forget a file.
Thanks,
Kaddie
For each categories link in the sidebox, how do I add "title" to it?
Example:
<a href="http://www.mysite.com/productpage.html" title="Adidas Watches">Adidas</a>
(See here)
Hello World! :cool:
I have a minor issue I haven’t been able to figure out:
Can’t get "Hover background" for "catLinks" to work… -That is the links under the divider, for "Specials", "All Products", etc...
Just don’t seem to read my .css for them links?
It’s picking up my default link color from “stylesheet.css”, (also the “a:active” color) but I haven’t been able to edit the hover background…
Any help is deeply appreciated! :hug:
www.troll-motor.no/shop
Jan.
i need help changing the table layout that the categories are listed as...
right now here is the store:
http://mickieandmarc.sidewing.com/store/
i want the categories to be listed as such:
http://mickieandmarc.sidewing.com/
basically i have a table with padding and spacing.. then i have inside each row a seperate table with the style attached to it that makes the box bg color pinkish and the dotted black lines around the outside..
ideally i want it to look like as it goes on the 2nd site.. but on mouse over i want to change the background color and the text color.. i know how to do this i just cannot locate where to make the changes, and im sure once i know the location its going to be hard to do.. can anyone help me do this please?
Hi,
I need a little help with Category Dessing. Is it possible to "category dress" EZPage Sidebox links too?
For example on my test site:
http://www.mygamedemos.com/store/ind...ex&cPath=69_65
"Featured Products" appear to be "category dressed", but the "Gallery" link under the "Important Links" EZPage link in the sidebox doesnt have the category dressing.
Can someone please tell me how to make category dressing apply to the EZPage sidebox too?
Thanks.
Monsunemoon. :clap:
Categories Dressing applies only to the categories sidebox. You would have to do some custom coding to apply the same sorts of styling elsewhere; I don't have time now to do anything about that.
You could copy some of the stylesheet rules and change #categories to #ezpages to apply the rules there, since that sidebox is already set up as a <ul> list.
Sidewing - What you want is accomplished just by applying styling to the right elements - no tables needed, and no difficulty.
Change the section of your stylesheet_categories_dressing.css to look like this:and adjust the numbers as desired.Code:#categories ul {/*top category lists*/
list-style: none;
background: none;
margin: 0 0 0.4em 0;
padding: 0;
}
#categories ul a {/*top categories*/
color: #000000;
font-size: 1.3em;
background-color: #f58386;
border: 1px dotted #000000;
display: list-item;
list-style: none;/*disc inside url(../images/bullet1.gif);change to list-style: none; to remove bullet*/
margin: 0;
padding: 0.7em;
text-align: center;
}
Troll - You need to use enough specificity so that the rule overrides any others that would apply to the links, like this:Code:#categories li a.category-links:hover {
color: #aabbcc;
}
JC.M - Categories Dressing automatically adds alt and title text to images, but to add a title to the text links you would need to edit tpl_categories.php where the link is built. You could easily automate adding the category name as a title, but adding expanded text as the title would require new coding to hold and handle that text, either in a database field or in a define file.
kaddie - I can't diagnose anything from your description. Can you give more details of what you have done, and what is and is not happening? A link to see your site may help too.