Hello Guest
No Avatar
Sign In to Remove
Posts: 
4
Reputation: 
2
Posted: April 9, 2011, 11:20 PM
  • Group: Member
I love your theme, it is perfect for my community. But I have a question - how does one go about changing the Menu categories?
Posts: 
400
Reputation: 
20
Posted: April 10, 2011, 1:37 AM
  • Group: Administrator
  • AIM: mlm@visualpulse.net
  • deviantART: MadLittleMods
  • Photobucket: MadLittleMods
If you need help after you view and read those links entirely please feel free to come back and post!

This topic should help: http://visualpulse.net/forums/index.php?topic=54.0

Also:
Edit Drop down menu:
FIND: (index.template.php)
Code: [Select]
<a class="chosen" href="#"><span>', $txt['vp_menu_item_one'] ,'</span></a>EDIT TO:
Code: [Select]
<a class="chosen" href="http://www.visualpulse.net/"><span>Custom Tab</span></a>

Add sub menu to item:
FIND:
Code: [Select]
<li>
<a class="chosen" href="#"><span>', $txt['vp_menu_item_one'] ,'</span></a>
ADD AFTER:
Code: [Select]
<ul>
<li>
<a href="#"><span>', $txt['vp_sub_menu_item_one'] ,'</span></a>
</li>
<li>
<a href="#"><span>', $txt['vp_sub_menu_item_two'] ,'</span></a>
</li>
</ul>
<3 Nerve, Sk8, Labradoodle, Austin
Posts: 
4
Reputation: 
2
Posted: April 10, 2011, 2:16 AM
  • Group: Member
Thank you very much.
Posts: 
4
Reputation: 
2
Posted: April 10, 2011, 2:45 AM
  • Group: Member
Another question, where would I go about editing the position of my logo? It's much more smaller than yours, I want it to be about middle.
Posts: 
400
Reputation: 
20
Posted: April 10, 2011, 3:04 AM
  • Group: Administrator
  • AIM: mlm@visualpulse.net
  • deviantART: MadLittleMods
  • Photobucket: MadLittleMods
Umm you could do the easy route and do this:

Find the height of the container which i think is 184px.

Find the height of your banner.

DO: [height of the container] - [height of your banner] = [REMAINING PX]

DO: [REMAINING PX] / 2 = [FINAL PADDING]

On container css add:
Code: [Select]
padding-top: [FINAL PADDING];
<3 Nerve, Sk8, Labradoodle, Austin