The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
forum.theclubpenguincheats.com
on the quicklink scrolldown menu, some of the text is not showing, its just a white box. http://i475.photobucket.com/albums/r...atex/pic-4.png |
#2
|
|||
|
|||
![]()
Looks like there is a code error. That donate should look like that. Might have a open tag someone in the code that is messing it up.
|
#3
|
|||
|
|||
![]()
yeah im fine with the donate button, its the white boxs with no text that im worried about. how can i fix this?
|
#4
|
||||
|
||||
![]()
You're missing code in the tables where you added that link. Tables should be structured like this:
HTML Code:
<table> <tr> <td>Menu Item</td> </tr> <tr> <td>Menu Item</td> </tr> <tr> <td>Menu Item</td> </tr> </table> Basically, all you should have done was add a new <tr><td></td></tr> to the Quick Links menu below whatever you wanted it to show up, and duplicated whatever class name your skin is using for the <td> blocks. By default that's usually vbmenu_control, but some custom skins can use random names. Just look at the other <td>s to see what they use. The class gives it the proper formating. Additionally, if you already knew that, make sure your tags are nested. Opening and closing tags should NOT overlap anywhere in the code. Correct Code:
<tr><td class="vbmenu_control">Menu Item</td></tr> Code:
<tr><td class="vbmenu_control">Menu Item</tr></td> |
#5
|
|||
|
|||
![]()
Um, what template is this in? NAvigation bar?
Here is my navbar template code: Quote:
|
#6
|
||||
|
||||
![]()
Use [CODE] tags please, not [QUOTE] tags.
By default, the Quick Links menu is in the navbar template, though some skins move it to the header. Did you not put the donate link in yourself? It would be wherever you did the initial editing. |
#7
|
|||
|
|||
![]()
no i used a plugin product for the donate link
--------------- Added [DATE]1263599682[/DATE] at [TIME]1263599682[/TIME] --------------- I cant seem to find it! I looked a long time. Code:
<!-- logo --> <a name="top"></a> <table width="80%" border="0" align="center" cellpadding="0" cellspacing="0" class="wrapper"> <tr> <td class="headerwrap"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="logowrap"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="images/solido/spacer.gif" alt="$vboptions[bbtitle]" width="233" height="129"></a></td> <td valign="top"> </td> </tr> </table></td> </tr> <tr> <td class="navwrap"> <!-- nav buttons bar --> <table id="navstyle" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px"> <tr align="center"> <if condition="$show['member']"> <td><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td> </if> <if condition="$show['registerbutton']"> <td><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td> </if> $template_hook[navbar_buttons_left] <td><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td> <td><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td> <td><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td> <if condition="$show['popups']"> <if condition="$show['searchbuttons']"> <if condition="$show['member']"> <td><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td> <else /> <td><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td> </if> <td id="navbar_search" ><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search"); </script></if></td> </if> <if condition="$show['member']"> <td id="usercptools" ><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td> </if> <else /> <if condition="$show['searchbuttons']"> <td><a href="search.php$session[sessionurl_q]" accesskey="4">$vbphrase[search]</a></td> <if condition="$show['member']"> <td><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td> <else /> <td><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td> </if> </if> <td><a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a></td> <if condition="$show['member']"> <td><a href="#" onClick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td> </if> </if> $template_hook[navbar_buttons_right] <if condition="$show['member']"> <td><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onClick="return log_out('$vbphrase[sure_you_want_to_log_out]')">$vbphrase[log_out]</a></td> </if> </tr> </table> <!-- / nav buttons bar --> </td> </tr> <tr> <td valign="top"> <!-- /logo --> <!-- content table --> $spacer_open $_phpinclude_output |
#8
|
||||
|
||||
![]()
If you're using a plugin, then you'll need to ask in the modification thread where the code for the Donate link is handled. Once you know where to look, you can edit the HTML from there.
|
#9
|
||||
|
||||
![]()
Exactly what are you looking for at this point? Your Quick Links dropdowns are shown in post 5 starting at this line:
<tr><td class="thead">$vbphrase[quick_links]</td></tr> However, you don't have the actual Quick Links in your navbar (which is in your header) in post 7. You need to add the following line in there where you want it: HTML Code:
<if condition="$show['member']"> <td class="vbmenu_control"><a id="usercptools" href="$show[nojs_link]#usercptools" accesskey="3">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td> </if> |
#10
|
||||
|
||||
![]() Quote:
|
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|