Log in

View Full Version : help me with custom popupmenu


mokujin
01-08-2013, 09:42 AM
hi all,
I have this custom popupmenu

<li class="popupmenu">
<a class="popupctrl" href="javascript://">Link Title</a>
<ul class="popupbody popuphover">
<li><a href="http://link1.com">link1</a></li>
<li><a href="http://link2.com">link2</a></li>
<li><a href="http://link3.com">link3</a></li>
<li><a href="http://link4.com">link4</a></li>
</ul>
</li>

Now I just want not to show this: https://vborg.vbsupport.ru/

Thank youuu!!

gamaken
01-08-2013, 04:53 PM
Custom how? Is this a custom template?
In your additional CSS make:
.popupmenu a.popupctrlNEW {
padding-{vb:stylevar right}:15px;
_padding-{vb:stylevar right}:25px;
}

...and then change your html to:
<li class="popupmenu">
<a class="popupctrlNEW" href="javascript://">Link Title</a>
<ul class="popupbody popuphover">
<li><a href="http://link1.com">link1</a></li>
<li><a href="http://link2.com">link2</a></li>
<li><a href="http://link3.com">link3</a></li>
<li><a href="http://link4.com">link4</a></li>
</ul>
</li>

mokujin
01-08-2013, 08:01 PM
No it doesnt work, it just removes https://www.vbulletin.com/forum/images/misc/black_downward_arrow.png but wont show the popup body on hover...

gamaken
01-09-2013, 04:11 AM
hmmm...My apologies
You're correct. . I hadn't noticed that.
Something to do with the yui?

mokujin
01-09-2013, 12:42 PM
I really dont know what to do with YUI :(
Can some one help me????
Thank you

ikopylov
01-09-2013, 06:27 PM
If I understand correctly, it is necessary to remove the arrow

.popupmenu a.popupctrlNEW {
padding-{vb:stylevar right}:15px;
_padding-{vb:stylevar right}:25px;
background-image:none;
}
<li class="popupmenu">
<a class="popupctrlNEW" href="javascript://">Link Title</a> .....

mokujin
01-09-2013, 08:36 PM
If I understand correctly, it is necessary to remove the arrow
yes it works !
Thank you :D