Quote:
Originally Posted by mitch84
conflict with this hack(ozzy), if activated menu disappears
|
Ok so in the mod options ensure you have this set to no:
Quote:
Auto Deploy
Setting this to "Yes" will make the style & language selectors show in the navbar.
Set this to "No" to be able to use the variable, {vb:raw show.ozzmodz_style_lang_chooser} in your templates, to make it show where you want.
|
Then edit template ozzmodz_style_lang_chooser and find:
Code:
<div style="margin-bottom:35px;">
Replace with:
Code:
<div class="avbozzystyle">
Now in additional.css add this just below the .abimage css definition:
Code:
.avbozzystyle {
float:right;
clear:left;
height:25px !important;
background:transparent;
margin-top:-25px !important;
margin-right:45% !important;
}
Now in template header find:
Code:
<div class="ablogo">
<div class="abimage"><a name="top" href="{vb:link forumhome}"><vb:comment><img src="images/avenger_blue/misc/home.png" width="960px" height="150px" alt="{vb:raw vboptions.bbtitle}" /></vb:comment></a></div>
</div>
Replace with:
Code:
<div class="ablogo">
<div class="abimage"><a name="top" href="{vb:link forumhome}"><vb:comment><img src="images/avenger_blue/misc/home.png" width="960px" height="150px" alt="{vb:raw vboptions.bbtitle}" /></vb:comment></a></div>
{vb:raw show.ozzmodz_style_lang_chooser}
</div>
That should sort it
.