Thomas Rozanov Posted February 26, 2011 Report Posted February 26, 2011 I need help with making my website look better. So I have a couple of questions. Info: I'm using obsess blue skin. I'm a noob 1) How do I make my var ticker ( the black moving text) and my normal text box. Not be on every page of my site? 2) How can i make my right menu (obsess blue) be different from my upper menu? In other words how do i seperate the two menu's in core_navigation.tpl? Thanks A Lot!! Quote
Jon Posted February 26, 2011 Report Posted February 26, 2011 You could make your top navbar a different file for example main_menu.tpl. Put that in the ObsessBlue skin folder Then, in the mnav div in the layout.tpl: <?php include "main_menu.tpl" ?> Then for the nav bar down the left content side you could do, <h2>Other Links</h2> <li><a href="#">Home</a></li> <li><a href="#">Link 2</a></li> Hope this helps, Jon Quote
Tom Posted February 26, 2011 Report Posted February 26, 2011 Then, in the mnav div in the layout.tpl: <?php include "main_menu.tpl" ?> <?php Template::Show('main_menu.tpl'); ?> would likely work better. Also; 1) Move all the code as well as containing elements into frontpage_main.tpl (<div class="mc01"> in layout.tpl) 2) Find the second instance of <?php Template::Show('core_navigation.tpl'); ?> (lines 229-233 ()) and get rid of it. Replace with other links you want, using the examples below it (Awards & Ranks) Quote
Thomas Rozanov Posted February 26, 2011 Author Report Posted February 26, 2011 Thanks Guys! I think i got it now But have a look on mark's site. His left menu bar is different from his upper black one. So what did he do? Thanks! Quote
Tom Posted February 26, 2011 Report Posted February 26, 2011 Thanks Guys! I think i got it now But have a look on mark's site. His left menu bar is different from his upper black one. So what did he do? Thanks! 2) Find the second instance of <?php Template::Show('core_navigation.tpl'); ?> (lines 229-233 ()) and get rid of it. Replace with other links you want, using the examples below it (Awards & Ranks) Quote
Thomas Rozanov Posted February 27, 2011 Author Report Posted February 27, 2011 )) Thanks! And sorry for my stupidity :S Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.