Miscaleneous modifications from Stoker
-
Stoker Offline
- Site Admin

- Posts: 4,181
- Joined: 12 May 2008, 21:26
- Last active: -
- Favourite EXT: Forum Goal
- Location: Denmark
Post
by Stoker »
For the welcome you need to find this within the welcome code: <li>
and change it to <li class="row">
Same goes for the forum goal html file.
~ The greatest achievement in life is to inspire ~
Regards Stoker
-
martin123456 Offline
- BBCoder VI

- Posts: 765
- Joined: 25 Jul 2011, 11:29
- Last active: -
- Favourite EXT: Ban button
- Location: Down south!
Post
by martin123456 »

worked a treat i was adding <li class="contents">

and now to try on mchat

-
Stoker Offline
- Site Admin

- Posts: 4,181
- Joined: 12 May 2008, 21:26
- Last active: -
- Favourite EXT: Forum Goal
- Location: Denmark
Post
by Stoker »
Weee, updated to 1.0.5 for phpbb 3.0.11

~ The greatest achievement in life is to inspire ~
Regards Stoker
-
Stoker Offline
- Site Admin

- Posts: 4,181
- Joined: 12 May 2008, 21:26
- Last active: -
- Favourite EXT: Forum Goal
- Location: Denmark
Post
by Stoker »
There was a bug in 1.0.5
Please download and use 1.0.6
~ The greatest achievement in life is to inspire ~
Regards Stoker
-
Redsun Offline
- BBCoder II

- Posts: 25
- Joined: 13 Mar 2010, 09:28
- Last active: -
- Favourite BBCode: Spoiler
- Favourite EXT: Top Stats
Post
by Redsun »
Thank you stoker
Will be a contrib folder for changed files (1.0.5 to 1.0.6) ?
Because open source matters...
-
Stoker Offline
- Site Admin

- Posts: 4,181
- Joined: 12 May 2008, 21:26
- Last active: -
- Favourite EXT: Forum Goal
- Location: Denmark
Post
by Stoker »
nope, use prosilver codechanges. its the same
~ The greatest achievement in life is to inspire ~
Regards Stoker
-
Tom Offline
- BBCoder II

- Posts: 7
- Joined: 28 Feb 2013, 07:45
- Last active: -
Post
by Tom »
Stoker,
How do I add a drop down button? I have a donate button and I want to add a second button under donate "donors"
-
Stoker Offline
- Site Admin

- Posts: 4,181
- Joined: 12 May 2008, 21:26
- Last active: -
- Favourite EXT: Forum Goal
- Location: Denmark
Post
by Stoker »
The style doesn't support drop down atm.
~ The greatest achievement in life is to inspire ~
Regards Stoker
-
Tom Offline
- BBCoder II

- Posts: 7
- Joined: 28 Feb 2013, 07:45
- Last active: -
Post
by Tom »
Stoker,
Thanks for the reply.
How do I add different banners to my custom links?
banner.png
You do not have the required permissions to view the files attached to this post.
-
Stoker Offline
- Site Admin

- Posts: 4,181
- Joined: 12 May 2008, 21:26
- Last active: -
- Favourite EXT: Forum Goal
- Location: Denmark
Post
by Stoker »
You can take a look at the code in overall_header.html
This part is what makes the banner change:
Code: Select all
<div id="page-header">
<!-- IF SCRIPT_NAME == "faq" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header2.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "search" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header3.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "memberlist" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header4.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "ucp" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header5.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "viewtopic" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header6.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "viewforum" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header7.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "mcp" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header8.jpg); background-position: top;">
<!-- ELSEIF SCRIPT_NAME == "posting" --><div class="header-bar" style="background-image: url({T_THEME_PATH}/images/bg_header9.jpg); background-position: top;">
<!-- ELSE --><div class="header-bar"><!-- ENDIF -->
~ The greatest achievement in life is to inspire ~
Regards Stoker