Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

CSS Customisation Generally
(1 viewing) (1) Guest
Go to bottomPage: 12345
TOPIC: CSS Customisation Generally
#4393
CSS Customisation Generally 14 Years, 6 Months ago Karma: 0
Hi,

I need to change the look and feel of this (fantastic!) vertical menu quite dramatically, and some changes are straigth forward (such as removing backgrounds & borders), however some changes do not have any effect at all e.g. link color:

.ux-menu a{color: red;}
or

.ux-menu-vertical a{color: red;}
1.) Is this module picking up some default styling from somewhere else? What are the differences between menu.min.css and menu.css? should I always append a style item with the word -vertical (that doesn't seem to work either though)?

2.) and so how can I e.g. change fonts (color, size, weight)?

3.) .ux-menu a:hover{ color: grey; } styling strangely seems to work on submenu links but not on 1st level links..?

4.) I would quite like to bring this menu then to our zencart shoppingcart site - would you be able to advice here at all I wonder, which files to 'migrate' etc?

Thanks!!

annika
The administrator has disabled public write access.
 
#4395
Re:CSS Customisation Generally 14 Years, 6 Months ago Karma: 760
Hello,

Thanks for your choice of our product. Regarding your questions:

1. The module uses menu.min.css file, it's minified version of menu.css file. If you want to adjust menu styles, you can change menu.css file, rename it to menu.min.css file and replace original menu.min.css file with updated file. Use '.ux-menu-vertical' CSS selector only if you want to indicate specific CSS properties for vertical menu, in other cases, you can use '.ux-menu' CSS selector.

2. You can use the following CSS rules for changing menu items color:

Code:


.ux-menu-container UL.ux-menu LI A {
  color: red;
}
.ux-menu-container UL.ux-menu LI A:hover {
  color: green;
}



Font weight and font size you can specify in module settings.

3. See CSS selectors for this case above.

4. What is Zend cart? It is Joomla! extension?

Regards,
ARI Soft
Last Edit: 2010/05/24 13:43 By admin.
The administrator has disabled public write access.
 
#4401
Re:CSS Customisation Generally 14 Years, 6 Months ago Karma: 0
Thanks for your super quick response, fantastic, got it all working now!

With regards to my last point - Zencart is a shopping cart (php & css), not Joomla. I am trying to implement the same vertical drop down menu there. I was just wondering if you can advice, how to bring the functionality (i.e. php & javascript code) of this menu module to another non-Joomla site, could I just cut and paste the code from certain files (and which files would those be)?

Many thanks!

annika
The administrator has disabled public write access.
 
#4406
Re:CSS Customisation Generally 14 Years, 6 Months ago Karma: 760
Unfortunately we have no experience of working with Zend Сart, but if you want to implement 'Ext Menu' in other product, you need to do the following:

1. Include ext-core.js and menu.min.js javascript files. You can find it in the following folder <joomla_dir>/modules/mod_ariextmenu/mod_ariextmenu/js/ .

2. Include menu.min.css and menu.ie.min.css files. You can find it in the following folder <joomla_dir>/modules/mod_ariextmenu/mod_ariextmenu/js/css/ .

3. Create HTML markup for menu items, how it looks you can see in menu.html.php file which is located in the following folder: <joomla_dir>/modules/mod_ariextmenu/mod_ariextmenu/templates/.

4. Call javascript code for init menu. It looks like:

Code:


Ext.onReady(function() { new Ext.ux.Menu("<ID_OF_MENU_CONTAINER>", {/* Menu properties goes here */}); })



Regards,
ARI Soft
The administrator has disabled public write access.
 
#4955
Re:CSS Customisation Generally 14 Years, 5 Months ago Karma: 0
I need to use the template css to this menu.
Is it possible, if yes how?

The menu module template has an image background .
website is www.raunharman.in/bachpan
The administrator has disabled public write access.
 
#4961
Re:CSS Customisation Generally 14 Years, 5 Months ago Karma: 760
Hello,

You can try to add the following CSS rules to 'CSS Styles' module parameter or to template CSS file:

Code:


.ux-menu-container .ux-menu a
{
  background: transparent none;
}

.ux-menu-container UL.ux-menu LI
{
  background-image: none;
}

#tcLeftCol UL.ux-menu LI UL LI
{
  padding-left: 0;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12345