MyBB Community Forums

Full Version: Two Things!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Url: forum.thedumpload.net

1. Alright, is there a way I can align the ads so when I post a topic or reply to a topic, the bottom advertisement is over-lapping my buttons(You may need to register to see what I mean).

2. Alright, I just added my theme, I want to edited the Social button up top and add links to the Extras. I want to add Rules, Forum Promotion, Clans, RPG, Contact us. The code is down below for the header can someone tell me how I would do that.

<ul class="topnav" style="margin-left:6%; margin-top: 15px;">
<li><a href="{$mybb->settings['bburl']}/portal.php" class="portal"><i style="font-size: 14px;" class="fa fa-home fa-fw"></i> Home</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php" class="search"><i style="font-size: 14px;" class="fa fa-search fa-fw"></i> Search</a></li>  
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist"><i style="font-size: 14px;" class="fa fa-users fa-fw"></i>Members</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar"><i style="font-size: 14px;" class="fa fa-calendar fa-fw"></i>Calendar</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help"><i style="font-size: 14px;" class="fa fa-info fa-fw"></i>Help</a></li> 
<li><a href='javascript:;' id="extraslink"><i style="font-size: 14px;" class="fa fa-caret-down fa-fw"></i>Extras</a></li>
  </ul>
  <div id="extraslink_popup" class="popup_menu" style="display: none;">
      <div class="popup_item_container">
        <a href="*" class="">"Rules"</a>
      </div>
      <div class="popup_item_container">
        <a href="*" class="">Forum Promotion</a>
      </div>
      <div class="popup_item_container">
        <a href="*" class="">Clans</a>
      </div>
      <div class="popup_item_container">
        <a href="*" class="">RPG</a>
      </div>
      <div class="popup_item_container">
        <a href="*" class="">Contact Us</a>
      </div>
  </div>
<div id='cssmenu'>
   <div class="float_right" style="margin-right:8%; margin-top: -30px;">
     <span class="socialtext">Get Social </span> &nbsp;
<a href="*"><img src="images/1point8/fb.png" style="vertical-align: middle" alt="" title="Like us on Facebook!" /></a>&nbsp;
<a href="*"><img src="images/1point8/tw.png" style="vertical-align: middle" alt="" title="Tweet us on Twitter!" /></a>&nbsp;
<a href="*"><img src="images/1point8/Google.png" style="vertical-align: middle" alt="" title="+1 us on Google!" /></a> &nbsp;
<a href="*"><img src="images/1point8/yt.png" style="vertical-align: middle" alt="" title="Subscribe on Youtube!" /></a>&nbsp;
<a href="*"><img src="images/1point8/tum.png" style="vertical-align: middle" alt="" title="Follow us on Tumblr!" /></a> 
  </div>
Quote:Alright, is there a way I can align the ads so when I post a topic or reply to a topic, the bottom advertisement is over-lapping my buttons(You may need to register to see what I mean).

In your HTML code of that template, add <br/> as many times as you need to fix it.

Quote:I want to edited the Social button up top and add links to the Extras. I want to add Rules, Forum Promotion, Clans, RPG, Contact us.

Did not get what you are trying to say, if english is not your native language, try using google translate.
What i get from above lines is that you want to add social buttons and Rules, Forum Promotion, Clans, RPG, Contact us etc...

For this you can simply replace this part with your desired ones.

<ul class="topnav" style="margin-left:6%; margin-top: 15px;">
<li><a href="{$mybb->settings['bburl']}/portal.php" class="portal"><i style="font-size: 14px;" class="fa fa-home fa-fw"></i> Home</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php" class="search"><i style="font-size: 14px;" class="fa fa-search fa-fw"></i> Search</a></li>  
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist"><i style="font-size: 14px;" class="fa fa-users fa-fw"></i>Members</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar"><i style="font-size: 14px;" class="fa fa-calendar fa-fw"></i>Calendar</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help"><i style="font-size: 14px;" class="fa fa-info fa-fw"></i>Help</a></li> 
<li><a href='javascript:;' id="extraslink"><i style="font-size: 14px;" class="fa fa-caret-down fa-fw"></i>Extras</a></li>
  </ul>

Here you can make it like this...

<li><a href="Link Goes here" class="search"><i style="font-size: 14px;" class="fa fa-search fa-fw"></i> RPG</a></li>