Jump to content

Dropdowns for languages and currencies in new basic theme


Recommended Posts

You can adjust this in the css file

open css/modules/blocklanguages/blocklanguages.css

 

in line 14 add a display: none;

#header_right #languages_block_top p {

display: none;

}

 

in ~line 45 change display: none; to display: block

 

#countries .countries_ul {

display: block;

...

}

remove the declaration

#countries .countries_ul_hover {

...

}

then a bit of fine tuning and you should have what you want.

Link to comment
Share on other sites

you could try to use position: absolute ;

Look for #header_right #languages_block_top and add the position

#header_right #languages_block_top {

position: absolute;

top: 0;

left: -300px;

}

You will most likely need a negative value for the left position. Just try a figure that fits in your theme.

Link to comment
Share on other sites

×
×
  • Create New...