Menu as a scrollable frame - Joomla! Forum - community, help and support
hello,
i trying figure out how can create module load menu items, vertically, inside scrollable frame fixed height.
i not looking fancy, accordion or expandable menus. possibly showing menu items list in specific url , load page through iframe inside custom html module. this, stuck , can't think how possibly it.
any highly appreciated.
thank in advance.
i trying figure out how can create module load menu items, vertically, inside scrollable frame fixed height.
i not looking fancy, accordion or expandable menus. possibly showing menu items list in specific url , load page through iframe inside custom html module. this, stuck , can't think how possibly it.
any highly appreciated.
thank in advance.
don't need iframe. use joomla menu module shows menu want display,
add module suffix (advanced tab) maybe " scrolling" (note space before word scrolling, , don't use "" marks).
then identify <ul> structure of menu, , add css statement custom css style sheet like:
see:
http://www.w3schools.com/cssref/tryit.a ... s_overflow
add module suffix (advanced tab) maybe " scrolling" (note space before word scrolling, , don't use "" marks).
then identify <ul> structure of menu, , add css statement custom css style sheet like:
code: select all
.scrolling ul {
height:120px; /*whatever want height be*/
overflow:scroll;
}
see:
http://www.w3schools.com/cssref/tryit.a ... s_overflow
Comments
Post a Comment