MyBB Community Forums

Full Version: 1.8 squared theme banner addition
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
The whole forum is blank now i did what you said and tested it with a banner
 <div class="banner">images/alphagamingv1.8/menupic.png</div>  
and yeh , the forum is now all blank

EDIT:
i made the code like this
<div class="banner"><img src="images/alphagamingv1.8/menupic.png"</div>    
the forum is now visible but aligned to the left and the banner still isnt showing up
Can you give me the forum url so I can check?
(2014-09-17, 10:59 PM)eNvy Wrote: [ -> ]Can you give me the forum url so I can check?

i have not set this theme to be used yet as its not functioning properly yet
but my url is 
theeditorscorner.com/forum 
the banner you see there is the banner i want to use.

i also deleted this line
<div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> Square</div>
because it first showed up all weird and compressed (the site) then i deleted that line and the forum showed up normal , just pushed to the left and the banner was still not visible
You mean that logo with text?

Also, you modified or deleted something more on the theme? Because maybe the problem is that :p.

¿Can you give me the exported version of the theme? So I can check here on localhost
(2014-09-17, 11:03 PM)eNvy Wrote: [ -> ]You mean that logo with text?

Also, you modified or deleted something more on the theme? Because maybe the problem is that :p.

If you mean the logo with the two basketball players , then yes , i change the banner monthly 

(2014-09-17, 11:03 PM)eNvy Wrote: [ -> ]You mean that logo with text?

Also, you modified or deleted something more on the theme? Because maybe the problem is that :p.

ok , i will try a fresh install , and see if i can get the banner to appear but do i deltet this
<div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> Square</div>

(2014-09-17, 11:03 PM)eNvy Wrote: [ -> ]You mean that logo with text?

Also, you modified or deleted something more on the theme? Because maybe the problem is that :p.

¿Can you give me the exported version of the theme? So I can check here on localhost

i can give you log in details if you want (my admin details )
No, that's the logo of the theme.

At the moment, don't delete anything, first we need to achieve to display correctly the banner, and after add or remove things.
(2014-09-17, 11:07 PM)eNvy Wrote: [ -> ]No, that's the logo of the theme.

At the moment, don't delete anything, first we need to achieve to display correctly the banner, and after add or remove things.

heres is the export
http://www.mediafire.com/view/kcjzmm7pqt...-theme.xml
Well... you break all the code haha.

Do a fresh install please.

I will tell you how to put the banner there.
(2014-09-17, 11:12 PM)eNvy Wrote: [ -> ]Well... you break all the code haha.

Do a fresh install please.

I will tell you how to put the banner there.

I BROKE THE CODE ?LOL
what did i do to break it (doing fresh install now)

Ok , fresh installed ,now , ready when you are
All deleted, modified, and <div> tags without closing.

Now, do a fresh install, and follow this steps:

1. Header template

Replace all the <div id="header"> with this:

<div id="header">
		<div class="wrapper">
          	<div class="banner"><img src="{$mybb->settings['bburl']}/images/alphagamingv1.8/mainpic.png" /></div>
          	<div class="logo"><img src="{$mybb->settings['bburl']}/images/alphagamingv1.8/logo2.png" /></div>
          	<div class="menu">
              	<ul>
                  	<li><a href="{$mybb->settings['bburl']}/index.php"><i class="fa fa-comments fa-2x"></i><br />Index</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/search.php"><i class="fa fa-search fa-2x"></i><br />Search</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/memberlist.php"><i class="fa fa-users fa-2x"></i><br />Members</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/calendar.php"><i class="fa fa-calendar-o fa-2x"></i><br />Calendar</a></li>
                	<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><i class="fa fa-question-circle fa-2x"></i><br />Help</a></li>
              	</ul>
          	</div>
		</div>
	</div>

2. Now go to square.css and search "#header", replace the header code with this:

#header {
  	background: #005ea7;
  	height: 480px;
}

3. Finally, at the end of the square.css, put this:

.banner {
  	margin: 0 auto;
  	padding: 10px 0 0 0;
}

4. Now put this image in alphagamingv1.8 folder (You need to use this image, if you use another, you will break the total width):

http://i.imgur.com/9hGCLtk.png

Rename that image to "logo2".

This is the result if you do all right:

[Image: DRW0q4B.png]
Pages: 1 2 3