Vertical TS3 Banner on Arrow Theme

For support and discussion related to templates, themes, and imagesets in phpBB 3.0.
Suggested Hosts
Locked
Carlox1
Registered User
Posts: 23
Joined: Mon Jun 13, 2016 10:16 am

Vertical TS3 Banner on Arrow Theme

Post by Carlox1 »

Hello,

How can I add the Vertical TS3 banner on an arrow phpbb 3 theme? I need to put the code on the right side of the forum only main page. I have the html code of the banner, but I don't know where I have to put the code. If someone can help me to solve this problem, giving me the final code.

Thanks a lot.
User avatar
Lumpy Burgertushie
Registered User
Posts: 69223
Joined: Mon May 02, 2005 3:11 am
Contact:

Re: Vertical TS3 Banner on Arrow Theme

Post by Lumpy Burgertushie »

open index_body.html in your text editor.
find:

<!-- INCLUDE forumlist_body.html -->


replace with:

Code: Select all

<div id="forumlist">
<!-- INCLUDE forumlist_body.html -->
</div>
<div id="sidebar">
your banner ad code here
</div>
<div class="clear"></div>
open common.css
find:
#simple-wrap {

before it, add:

Code: Select all

#forumlist {
   float: left;
   width: 84%;
}

#sidebar {
   float: right;
   width: 15.5%;
}
be sure to replace the text "your banner code here" with your actual banner code.
Premium phpBB 3.3 Styles by PlanetStyles.net

I am pleased to announce that I have completed the first item on my bucket list. I have the bucket.
Carlox1
Registered User
Posts: 23
Joined: Mon Jun 13, 2016 10:16 am

Re: Vertical TS3 Banner on Arrow Theme

Post by Carlox1 »

thanks a lot!

Moderators can close this topic :D
Locked

Return to “[3.0.x] Styles Support & Discussion”