inherit
163479
0
Mar 15, 2017 21:39:06 GMT -8
Little Devil
413
February 2011
riverinajack
|
Post by Little Devil on Jan 14, 2013 13:08:10 GMT -8
Why is it that I can't get both the title of my forum and logo above where the home, search,members etc is
|
|
inherit
163839
0
May 25, 2017 20:48:34 GMT -8
Maiden
1,020
February 2011
dreamaiden
|
Post by Maiden on Jan 15, 2013 7:24:59 GMT -8
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jan 15, 2013 9:48:00 GMT -8
You can always modify your forum wrapper template. Just add in $[forum.name] to add the forum name to wherever you want it.
|
|
inherit
163479
0
Mar 15, 2017 21:39:06 GMT -8
Little Devil
413
February 2011
riverinajack
|
Post by Little Devil on Jan 15, 2013 14:36:49 GMT -8
You can always modify your forum wrapper template. Just add in $[forum.name] to add the forum name to wherever you want it. OK Tim you have lost me now, I might be a bit of a dummy when it comes to computer programming but I don't know where to put it in the template I want the logo and the forum name on all the themes home page, so where about in the forum wrapper template does that bit of code go what line number or does it go into one of the loops & varibles
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jan 15, 2013 15:21:04 GMT -8
Here's the first part of the default forum wrapper template, with the line added (and made larger so it's easier to find). This would put the name directly to the right of the logo.
<!DOCTYPE HTML> $[tag.html.open] <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>$[title] | $[forum.name]</title> $[head] </head> <body> {if $[maintenance_mode]} <div class="maintenance-header"> {if $[can.disable_maintenance]}<p>Finished with maintenance? $[disable_maintenance_link].</p>{/if} </div> {/if} <div id="wrapper"> <header> <div id="banner-container" role="banner"> <h2 id="banner"> Modify this line -----------------------------> $[forum.title] <span id="forum_name">$[forum.name]</span> <----------------------------------------------------- </h2> </div> <a id="navigation-skip" href="#content" accesskey="s" class="aria-hidden" title="Skip Navigation">Skip Navigation</a> <a href="#" accesskey="d" title="Open Menu" onclick="proboards.hotkeys.activate(Keys.d); return false;"></a> <div id="navigation-menu" class="ui-helper-clearfix"> <ul role="navigation"> {foreach $[navigation.menu]} <li>
If you wanted to apply some styling to it, you could add whatever styling you want to the CSS (Admin Area > Themes > Colors & Styles > Style Sheet) as:
#forum_name { CSS STYLES GO HERE }
|
|
inherit
163479
0
Mar 15, 2017 21:39:06 GMT -8
Little Devil
413
February 2011
riverinajack
|
Post by Little Devil on Jan 15, 2013 21:15:05 GMT -8
Here's the first part of the default forum wrapper template, with the line added (and made larger so it's easier to find). This would put the name directly to the right of the logo. <!DOCTYPE HTML> $[tag.html.open] <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>$[title] | $[forum.name]</title> $[head] </head> <body> {if $[maintenance_mode]} <div class="maintenance-header"> {if $[can.disable_maintenance]}<p>Finished with maintenance? $[disable_maintenance_link].</p>{/if} </div> {/if} <div id="wrapper"> <header> <div id="banner-container" role="banner"> <h2 id="banner"> $[forum.title] <font size="5"><b><span id="forum_name">$[forum.name]</span></b></font> </h2> </div> <a id="navigation-skip" href="#content" accesskey="s" class="aria-hidden" title="Skip Navigation">Skip Navigation</a> <a href="#" accesskey="d" title="Open Menu" onclick="proboards.hotkeys.activate(Keys.d); return false;"></a> <div id="navigation-menu" class="ui-helper-clearfix"> <ul role="navigation"> {foreach $[navigation.menu]} <li>
If you wanted to apply some styling to it, you could add whatever styling you want to the CSS (Admin Area > Themes > Colors & Styles > Style Sheet) as: #forum_name { CSS STYLES GO HERE } Sorry to be a pain in the butt Tim but all the code you sent in a Email didn't come out. It is missing the right hand side John
|
|
inherit
163479
0
Mar 15, 2017 21:39:06 GMT -8
Little Devil
413
February 2011
riverinajack
|
Post by Little Devil on Jan 15, 2013 21:15:19 GMT -8
Here's the first part of the default forum wrapper template, with the line added (and made larger so it's easier to find). This would put the name directly to the right of the logo. <!DOCTYPE HTML> $[tag.html.open] <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>$[title] | $[forum.name]</title> $[head] </head> <body> {if $[maintenance_mode]} <div class="maintenance-header"> {if $[can.disable_maintenance]}<p>Finished with maintenance? $[disable_maintenance_link].</p>{/if} </div> {/if} <div id="wrapper"> <header> <div id="banner-container" role="banner"> <h2 id="banner"> $[forum.title] <font size="5"><b><span id="forum_name">$[forum.name]</span></b></font> </h2> </div> <a id="navigation-skip" href="#content" accesskey="s" class="aria-hidden" title="Skip Navigation">Skip Navigation</a> <a href="#" accesskey="d" title="Open Menu" onclick="proboards.hotkeys.activate(Keys.d); return false;"></a> <div id="navigation-menu" class="ui-helper-clearfix"> <ul role="navigation"> {foreach $[navigation.menu]} <li>
If you wanted to apply some styling to it, you could add whatever styling you want to the CSS (Admin Area > Themes > Colors & Styles > Style Sheet) as: #forum_name { CSS STYLES GO HERE } Sorry to be a pain in the butt Tim but all the code you sent in a Email didn't come out. It is missing the right hand side John
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jan 16, 2013 8:47:01 GMT -8
Uh, I didn't send you any emails. I did just edit my post for clarity, if that helps at all.
|
|