Re: Css Flyout Categories Menu troubles
Quote:
Originally Posted by
motti
[FONT=Times New Roman]Hi Get Him Fast and Clyde[/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]Thank you both, for the info Get Him and Clyde for the help [/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]Last think I need on this mod ( or my mod ) is how can I make large space or even an Empty box between my category list to the Special., New Product Etc...[/FONT]
[FONT=Times New Roman]Or maybe I shouldn’t say last think, there is always something new coming up :smile: [/FONT]
in stylesheet_categories_menu.css add the following:
Code:
#spacing {
padding: 0.2em 0;
border: 3px solid #fff;
}
Now in tpl_categories_css.php find this line of code:
Code:
$content .= '<ul class="level1"><li><a href=""> </a></li></ul>'; // insert a blank line/box in the menu
and change it to read:
Code:
$content .= '<div id="spacing"> </div>'; // insert a blank line/box in the menu
Re: Css Flyout Categories Menu troubles
Ty Clyde
It is looking great :clap:
You are the best
Thank you
Re: Css Flyout Categories Menu troubles
hi
does somebody can help me in solving this problem:
I have a site with two languages, I want to have some categories for a language but not for the others, the problem is that category flyout shows a blank row for this not translated category, any idea to resolving this problem?
the same problem I have in another site with multisite module, normal category sidebox works with filter function of multisite module, but flyout doesn't work and shows all categories eben filtered categories.
2- I got already the solution to get subcategories from right to left from Dr.Byte, but for the header css flyout, I don't find any place to change float, or etc, every changes I ried didn't work, any idea about this too?
thanks iin advance
reza
Re: Css Flyout Categories Menu troubles
reza, could you post a URL so we can see this, please? I think I know what you are trying to do, but I want to make sure.
Re: Css Flyout Categories Menu troubles
I have just implemented this fantastic mod. It is great in IE. Bear in mind that this could be specific to me, but in Firefox, the side menu is dark blue - it doesn'thave the image rollovers. It looks like it is CSS styled.
http://www.thegemtree.com/
appreciate any help with this.
Re: Css Flyout Categories Menu troubles
**** SORRY IGNORE THAT, I CANNOT EDIT AND REMOVE THE ABOVE ****
it is working fine in firefox. For some reason, firefox was not showing it right for a little while
2 Attachment(s)
Re: Css Flyout Categories Menu troubles
Quote:
Originally Posted by
HeathenMagic
I have just implemented this fantastic mod. It is great in IE. Bear in mind that this could be specific to me, but in Firefox, the side menu is dark blue - it doesn'thave the image rollovers. It looks like it is CSS styled.
http://www.thegemtree.com/
appreciate any help with this.
Quote:
Originally Posted by
HeathenMagic
**** SORRY IGNORE THAT, I CANNOT EDIT AND REMOVE THE ABOVE ****
it is working fine in firefox. For some reason, firefox was not showing it right for a little while
Thanks for the compliment. Just thought the colors were a little off for your site. Of course, you can replace those 2 images with any you like.......or if you like those buttons, and not the colors.....guess what?......I made you some that matches your site a little better. You might have to change the color of your text, though. Anyway, here they are:
Re: Css Flyout Categories Menu troubles
Thankyou so much for that I am most grateful.
I am hesitant in asking for your help further, but I have been looking for nigh on two hours. lol
I figured now that the css flyout sidebox text colour is defined somewhere.
I tried to add color: #000000; to the relevant place in stylesheet_categories_menu.css but it doesn't have any effect.
I have figured that if I change a component in the main stylesheet.css, it will change the colour, but all of the site links also.
I am wondering if I may have missed something in my limited knowledge.
Thanks once again,
Re: Css Flyout Categories Menu troubles
Your quite welcome. And, nope.....you haven't missed anything, as far as I know. It's all controlled from the stylesheet.css, unfortunately. Maybe somebody like DrByte could elaborate on this issue a little further. I'm sure it could somehow be separated from the other links, but I haven't figured it out, yet. Just like that STUPID little blank menu that's been driving me crazy! I WILL figure that one out..........someday.
Re: Css Flyout Categories Menu troubles
The "link" text color(s) are defined in the main stylesheet.css
Code:
a:link, #navEZPagesTOC ul li a {
color: #000;
text-decoration: none;
}
a:visited {
color: #000;
text-decoration: none;
}
a:hover, #navEZPagesTOC ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
color: #000;
}
a:active {
color: #000;
}
You can control the categories text color(s) by adding a color: #000; attribute to each "a" declaration in the flyout menu stylesheet. This will then only affect the text color(s) in the flyout menu and not do anything to other text links.