Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,471
There are 741 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     HTML/XHTML/DHTML/CSS :

IPB add banner

Thread title: IPB add banner
Closed Thread    
    Thread tools Search this thread Display Modes  
08-15-2006, 09:37 AM
#1
ambience is offline ambience
Status: Member
Join date: Sep 2005
Location: Townsville, Australia
Expertise:
Software:
 
Posts: 475
iTrader: 0 / 0%
 

ambience is on a distinguished road

Send a message via AIM to ambience Send a message via MSN to ambience

  Old  IPB add banner

Just wondering, is any one able to tell me how to add a little add banner
under the little red bar

http://zuneinfo.com/forums/

I dont really have amy idea where it goes, so thanks for the help

08-16-2006, 10:26 AM
#2
ambience is offline ambience
Status: Member
Join date: Sep 2005
Location: Townsville, Australia
Expertise:
Software:
 
Posts: 475
iTrader: 0 / 0%
 

ambience is on a distinguished road

Send a message via AIM to ambience Send a message via MSN to ambience

  Old

ahh any one know?
I might be willing to pay some one to do if really is that hard.

08-16-2006, 04:17 PM
#3
LeetPCUser is offline LeetPCUser
LeetPCUser's Avatar
Status: Member
Join date: Aug 2006
Location: Wisconsin
Expertise:
Software:
 
Posts: 132
iTrader: 0 / 0%
 

LeetPCUser is on a distinguished road

Send a message via AIM to LeetPCUser Send a message via MSN to LeetPCUser Send a message via Yahoo to LeetPCUser

  Old

I could possibly sort threw code and try and figure it out. I see other sites doing it and I have quite a bit of experiance with forum editing (PHPBB and SMF). I added you to AIM and MSN. BTW, you spelt hotmail wrong on your MSN handle for the forum. If you are still searching for help, I am more than willing to help.

08-16-2006, 04:39 PM
#4
fluke is offline fluke
Status: I'm new around here
Join date: Jun 2006
Location:
Expertise:
Software:
 
Posts: 17
iTrader: 0 / 0%
 

fluke is on a distinguished road

  Old

this is pretty easy to do (though im doing this off the top of my head)

go to admin panel, then look and feel (tab at the top)

in the skin sets click the options button on the right of the skin you want to edit.
a drop down menu should appear, click "edit board header and footer wrapper"

the wrapper should load in a test box. find the line <% MEMBER BAR %> and add the banner code below that line.

save it and you should have a banner visible on your forum

08-17-2006, 05:08 AM
#5
ambience is offline ambience
Status: Member
Join date: Sep 2005
Location: Townsville, Australia
Expertise:
Software:
 
Posts: 475
iTrader: 0 / 0%
 

ambience is on a distinguished road

Send a message via AIM to ambience Send a message via MSN to ambience

  Old

ahh ok fluke.

If I was to pay, or if its not that hard. What is the code needed to add a box just like these guys have done here
http://www.cyberanswers.org/forum/in...showtopic=1666

The big red box is what I am talking about.

08-17-2006, 11:37 AM
#6
fluke is offline fluke
Status: I'm new around here
Join date: Jun 2006
Location:
Expertise:
Software:
 
Posts: 17
iTrader: 0 / 0%
 

fluke is on a distinguished road

  Old

okay the instructions i said before will show the message to all people. if you want to do that then put a code like

HTML Code:
<table  width="100%" cellspacing="2" cellpadding="2">
	<tr>
		<td class="message" bgcolor="#b00203"><img src="stop.gif" style="float: left;" alt="" /><font color="#FFFFFF"><strong>HELLO AND WELCOME!</strong> 
		<br>Thanks for stopping by. Before you can post a question give an answers 
		or access our downloads , you'll have to 
		</font> 
		<a href="register.php" rel="nofollow" style="text-decoration: none;font-weight:700">
		<font color="#FFFFFF">register</font></a><font color="#FFFFFF"> -- it's completely free! If you just want to browse through the existing questions, just select the forum that you want to visit from the selection below. Otherwise, 
		</font> 
		<a href="register.php" rel="nofollow" style="text-decoration: none;font-weight:700">
		<font color="#FFFFFF">click here to register!</font></a>
</td>	</tr>
</table>
where i told you before


if you want it to only be shown to unregistered people then you have to do it differently.

log in to admin cp, then go look and feel. in the skin sets click the button on the right of the skin you want to edit and then in the drop down menu choose "edit template html". now click on "all global html" and then more links will appear on the right hand side. Find the "member bar" and click that.

a text box will appear, scroll to the bottom of that and put in the code


HTML Code:
<!-- guest welcome message -->
<if="ipb.member['id'] == 0"> 

	

<table  width="100%" cellspacing="2" cellpadding="2">
	<tr>
		<td class="message" bgcolor="#b00203"><img src="stop.gif" style="float: left;" alt="" /><font color="#FFFFFF"><strong>HELLO AND WELCOME!</strong> 
		<br>Thanks for stopping by. Before you can post a question give an answers 
		or access our downloads , you'll have to 
		</font> 
		<a href="register.php" rel="nofollow" style="text-decoration: none;font-weight:700">
		<font color="#FFFFFF">register</font></a><font color="#FFFFFF"> -- it's completely free! If you just want to browse through the existing questions, just select the forum that you want to visit from the selection below. Otherwise, 
		</font> 
		<a href="register.php" rel="nofollow" style="text-decoration: none;font-weight:700">
		<font color="#FFFFFF">click here to register!</font></a>
</td>	</tr>
</table>	


</if>
<!-- / guest welcome message -->
save it. now a message will appear to your guests only.



Hope one of the methods is what you want




(the table code i told you to put in is copied directly from that site your suggested. Use your sense to see how you want to edit it to your needs)

08-17-2006, 12:19 PM
#7
ambience is offline ambience
Status: Member
Join date: Sep 2005
Location: Townsville, Australia
Expertise:
Software:
 
Posts: 475
iTrader: 0 / 0%
 

ambience is on a distinguished road

Send a message via AIM to ambience Send a message via MSN to ambience

  Old

Oh wow!

Thank you so much man! very helpful and explained it all so well. Thanks heaps once again!

08-17-2006, 12:25 PM
#8
fluke is offline fluke
Status: I'm new around here
Join date: Jun 2006
Location:
Expertise:
Software:
 
Posts: 17
iTrader: 0 / 0%
 

fluke is on a distinguished road

  Old

no problem, im glad to help.

also, looking at your page, if you want to remove that image box on the left remove the part

<img src="stop.gif" style="float: left;" alt="" />

from the code.

08-18-2006, 04:42 AM
#9
ambience is offline ambience
Status: Member
Join date: Sep 2005
Location: Townsville, Australia
Expertise:
Software:
 
Posts: 475
iTrader: 0 / 0%
 

ambience is on a distinguished road

Send a message via AIM to ambience Send a message via MSN to ambience

  Old

ohh didnt see that, the img does not show up in Flock

Closed Thread    


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed