Previous Thread
Next Thread
Print Thread
Hop To
Anonymous
Unregistered
Anonymous
Unregistered
We recently opened a Songwriting Message Board at www.tunesmith.biz

Unfortunately, EVEN my website designer has NO IDEA how to make our new website Logo appear on the right side of the Main Board's Page, instead of the left (like it's pre-set to do)

He says that..."Hacking those scripts that drive the board is over my head. It would require some of the code to be rewritten. And the TRICKY thing about that is, if you change ONE thing over here, it may cause 7 things over there to stop working properly.
I suppose, if I knew WHERE the code that controlled that was, I could play with it and see what happened, but there are thousands of lines of code spread out over 40 scripts that all work together to make the thing run. I wouldn't even know where to start looking for THE SPOT, and I have no idea how to reverse the positions without messing everything up, if and should I ever find it. I Better to leave it alone, I think."

I have seen MANY other InfoPop boards set up in MANY different ways, so I know that it CAN be done... and if you go look at my Logo, you'll see why I want it on the right instead of the left.

Could somebody PLEASE help me out! <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />

Al

[This message was edited by loveisaslowdance on 06 Jan 02 at 10:00 PM.]

Anonymous
Unregistered
Anonymous
Unregistered
You could replace the graphic with a small 1x1 blank gif and then add the image in the header with the alignment to the right.. that is what I did with my board.

Khârn - Moderator
UBB5&6 How Do I Do This?
UBB Support Forums
Please note, I do not offer support via email!

Anonymous
Unregistered
Anonymous
Unregistered
Edit public_common.pl and any of the other templates that have the $BBTitle tag, and redo the html accordingly. <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />

[b]Moderator Graphics, Styles & Templates[/b]

UBBDesign.com: custom graphics and layouts for:
UBB â„¢ & UBBT â„¢ As well as Custom Web Development

Anonymous
Unregistered
Anonymous
Unregistered
And if you're still having trouble, here is the exact code:

In public_common.pl

*********
FIND
*********

$standard_title_table = qq~
<TABLE border="0" width="$vars_style{TableWidth}">
<TR><TD align="left" valign="top" >
<A HREF="$ULTIMATEBB"><IMG src="$vars_config{NonCGIURL}/$vars_style{BBTitle}" border="0"></A>
</TD>
<TD align="center">
<B>
<FONT size="3" face="$vars_style{FontFace}" color="$vars_style{BBTitleFontColor}">$vars_config{BBName}</FONT></B>
<br>
<FONT size="1" face="$vars_style{FontFace}">
$MainButtonsLine
</FONT>
</TD></TR></TABLE>
~;

*********
REPLACE WITH
*********

$standard_title_table = qq~
<TABLE border="0" width="$vars_style{TableWidth}">
<TR><TD align="right" valign="top" >
<A HREF="$ULTIMATEBB"><IMG src="$vars_config{NonCGIURL}/$vars_style{BBTitle}" border="0"></A>
</TD>
<TD align="center">
<B>
<FONT size="3" face="$vars_style{FontFace}" color="$vars_style{BBTitleFontColor}">$vars_config{BBName}</FONT></B>
<br>
<FONT size="1" face="$vars_style{FontFace}">
$MainButtonsLine
</FONT>
</TD></TR></TABLE>
~;

-------------------------
http://www.sfpunk.com
Winner of UBBDev's September Member Spotlight

Anonymous
Unregistered
Anonymous
Unregistered
Ummm both are the same <img src="https://www.ubbcentral.com/boards/images/graemlins/frown.gif" alt="" />

[b]Moderator Graphics, Styles & Templates[/b]

UBBDesign.com: custom graphics and layouts for:
UBB â„¢ & UBBT â„¢ As well as Custom Web Development

Anonymous
Unregistered
Anonymous
Unregistered
Look closly, the alignment tags are different. eek

Judd
Senior Graphic Designer, Infopop Corporation

Anonymous
Unregistered
Anonymous
Unregistered
Unfortunately, EVEN my website designer has NO IDEA how to make our new website Logo appear on the right side of the Main Board's Page, instead of the left (like it's pre-set to do)

$standard_title_table = qq~
<TABLE border=0 width=$vars_style{TableWidth}>
<TR><TD align=left valign=top >
<B>
<FONT size=3 face=$vars_style{FontFace} color=$vars_style{BBTitleFontColor}>$vars_config{BBName}</FONT></B>
<br>
<FONT size=1 face=$vars_style{FontFace}>
$MainButtonsLine
</FONT>
</TD>
<TD align=right>

<A HREF=$ULTIMATEBB><IMG src=$vars_config{NonCGIURL}/$vars_style{BBTitle} border=0></A>
</TD></TR></TABLE>
~;


I think this is what they wanted <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />

[b]Moderator Graphics, Styles & Templates[/b]

UBBDesign.com: custom graphics and layouts for:
UBB â„¢ & UBBT â„¢ As well as Custom Web Development

Anonymous
Unregistered
Anonymous
Unregistered
This is not working, all this does is move the Logo from the Left side, over a couple of inches to the right. It keeps it stuck within the same "parameters" as before. I want to move the Logo over to the FAR RIGHT SIDE OF THE BOARD. And move the text buttons that are on that side, over to the left where the Logo was... basically FLIP FLOP the 2 items.

Can Somebody help with that one? LOL PLEEEEEASE !! <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />

Al

Anonymous
Unregistered
Anonymous
Unregistered
The code I posted will do that.

[b]Moderator Graphics, Styles & Templates[/b]

UBBDesign.com: custom graphics and layouts for:
UBB â„¢ & UBBT â„¢ As well as Custom Web Development

Anonymous
Unregistered
Anonymous
Unregistered
Oh !! Thanks... Lemme go try!

Al
PS> will it keep the Logo to the Right on ALL the pages, or JUST the on the mainpage ?


<>

Anonymous
Unregistered
Anonymous
Unregistered
It will keep it on all pages. <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />

-------------------------
http://www.sfpunk.com
Winner of UBBDev's September Member Spotlight

Anonymous
Unregistered
Anonymous
Unregistered
OK Zach and JC... that worked for the LOGO,

HOWEVER... now the text that flipped over to the right is at the Top of the page.

And the change I wanted is only in effect on the Mainpage, not on any of the the Forum pages.

Can We Fix These Things?

Al
www.tunesmith.biz

Anonymous
Unregistered
Anonymous
Unregistered
In public_common.pl find:

<TD align="left" valign="top" >
<B>
<FONT size="3" face="$vars_style{FontFace}" color="$vars_style{BBTitleFontColor}">$vars_config{BBName}</FONT></B>
<br>
<FONT size="1" face="$vars_style{FontFace}">
$MainButtonsLine
</FONT>
</TD>

and replace with:

<TD align="left" valign="middle" >
<B>
<FONT size="3" face="$vars_style{FontFace}" color="$vars_style{BBTitleFontColor}">$vars_config{BBName}</FONT></B>
<br>
<FONT size="1" face="$vars_style{FontFace}">
$MainButtonsLine
</FONT>
</TD>

That will fix the problem with the Buttons on top. As for not appearing on all pages, I thought public_common.pl would help it work on all pages, but you may have to edit all public*.pl template files. <img src="https://www.ubbcentral.com/boards/images/graemlins/frown.gif" alt="" />

-------------------------
http://www.sfpunk.com
Winner of UBBDev's September Member Spotlight

Anonymous
Unregistered
Anonymous
Unregistered
Hi Everyone,

my page at www.tunesmith.biz now has the Logo on the right, (on the mainpage) but we still don't know how to move it on the secondary pages. It appears to have 2 codes (the one you told us to change, that fixed the main page and the "Thankyou For Posting" page) and one other, for the Individual Forum pages.

How do we fix the other one, so that our Logo goes to the right side of the board on those too?

It looks silly right now, because when you surf around the message board, the Logo is bouncing from side to side as you change pages...

Al

Anonymous
Unregistered
Anonymous
Unregistered
Is there ANYONE out there who knows how to fix the other (message and posting) pages ???

This really sucks... because now we have it done Halfway, and it looks like the board is Under Construction. Please don't drop us halfway through the process...

PLEASE HELP!!!!

AL
www.tunesmith.biz

Anonymous
Unregistered
Anonymous
Unregistered
Hmm...The UBB guys are out today, but I'll make sure to find out tomorrow.

Judd
Senior Graphic Designer, Infopop Corporation

Anonymous
Unregistered
Anonymous
Unregistered
THANKYOU SO MUCH !!!!!!!

Ask them to click on this link to my board, and see for themselves what is happening.
www.tunesmith.biz

The mainpage is ok now. But if you click onto any of the posting forums, the Logo shows up on the other side. It looks really dumb being halfway done like that! LOL

Al

Anonymous
Unregistered
Anonymous
Unregistered
Someone else said you may need to make modifications to other public*.pl files in the Templates directory.

For instance, public_forum_page.pl

Graeme

Moderator: UBB6 How Do I?

NOTE: Any email requests for support will be ignored.

"The ships hung in the sky in much the same way that bricks don't." --Douglas Adams

Anonymous
Unregistered
Anonymous
Unregistered
Quote
Originally posted by Zach:

That will fix the problem with the Buttons on top. As for not appearing on all pages, I thought public_common.pl would help it work on all pages, but you may have to edit all public*.pl template files. <img src="https://www.ubbcentral.com/boards/images/graemlins/frown.gif" alt="" />
Yup. <img src="https://www.ubbcentral.com/boards/images/graemlins/frown.gif" alt="" />

-------------------------
http://www.sfpunk.com
Winner of UBBDev's September Member Spotlight

Anonymous
Unregistered
Anonymous
Unregistered
We changed ALL of those public pl files... and the Logo is STILL on the Left side of the board, on every page but the Main Page. The code for the Main Page is the ONLY code you gave us that worked.

Somebody must know the proper code for the other Logo pages, and the place to go.

Please Help Us, somebody!!

AL
www.tunesmith.biz

Anonymous
Unregistered
Anonymous
Unregistered
Just to clarify, you've cleared the cache right?

Graeme

Moderator: UBB6 How Do I?

NOTE: Any email requests for support will be ignored.

"The ships hung in the sky in much the same way that bricks don't." --Douglas Adams

Anonymous
Unregistered
Anonymous
Unregistered
I mailed this page to Dave Dreezer (One of our UBB guys), he will probably be able to help.

Judd
Senior Graphic Designer, Infopop Corporation

Anonymous
Unregistered
Anonymous
Unregistered
Thankyou... it's been a week since we got this HALFWAY done, LOL It will be great to finally complete the job. <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" /> I hope the person you sent it to can help us out.

Al

Anonymous
Unregistered
Anonymous
Unregistered
Dave Dreezer WHERE ARE YOU !!!! LOL

and Yes Graeme, we cleared the cache, that's not the problem. The code needs to be changed in some other location or script to move the Logo to the left hand side of the board on the other pages. We just don't know how. Nobody else seems to know either, so far.

Al

Anonymous
Unregistered
Anonymous
Unregistered
As far as I can tell, you HAVE NOT modified public_forum_page.pl, circa line 44.

Check that please. <img src="https://www.ubbcentral.com/boards/images/graemlins/smile.gif" alt="" />

Graeme

Moderator: UBB6 How Do I?

NOTE: Any email requests for support will be ignored.

"The ships hung in the sky in much the same way that bricks don't." --Douglas Adams

Anonymous
Unregistered
Anonymous
Unregistered
We had already modified the script you mentioned, based on our search for the word: "BBTitle". We are uncertain which line is line 44. Maybe this modification isn't what it needed... (below is what we did) How should this be modified differently...

//-->
</SCRIPT>
<table border="0" width="$vars_style{TableWidth}">
<tr>
<td align="left" valign="middle">
<A href="$ULTIMATEBB"><IMG SRC="$vars_config{NonCGIURL}/$vars_style{BBTitle}" BORDER="0"></A>
<BR>
<FONT SIZE="$vars_style{TextSize}" FACE="$vars_style{FontFace}" color="$vars_style{LinkColor}"><B>
$forum_name
</B>
<br>
<FONT size= "1" COLOR="$vars_style{VisitedLinkColor}">
($vars_wordlets{moderated_by} $Moderator)
<P>
<BR>
</FONT></font>
</td>
<TD align="right">
<td valign="top" nowrap>
<CENTER>
<BR><BR>
<FONT SIZE="$vars_style{TextSize}" FACE="$vars_style{FontFace}">
$new_topic_button
</FONT>
<BR>
<FONT SIZE="1" FACE="$vars_style{FontFace}">
$MainButtonsLine
<p>
$topic_view_line
</FONT>
</CENTER>
</td></tr></table>

Anonymous
Unregistered
Anonymous
Unregistered
Well, we started this post 2 weeks ago. And we still don't have the answer we need.

I think the UBB Product is great... but the tech. section is leaving much to be desired. We explained our problem over and over, in this thread, we put up a link to our site, and waited for two weeks.

Guess our board is just gonna remain as is. I'm really dissapointed.

Al

Anonymous
Unregistered
Anonymous
Unregistered
I asked one of our graphics/templates experts to take over from me on this one but I guess ICQ is having problems (I know I haven't been receiving all the messages I've been sending)..

Someone suggested you make some changes to the align tags on page 1 of this thread. They haven't been made to the code you pasted in.

All I can suggest...

Graeme

Moderator: UBB6 How Do I?

NOTE: Any email requests for support will be ignored.

"The ships hung in the sky in much the same way that bricks don't." --Douglas Adams

Anonymous
Unregistered
Anonymous
Unregistered
I found our request to be very simple.

We want our Logo to be on the right, not the left side of the board.

You guys sent us a code, We input the code we recieved, and our Logo moved to the right side... HOWEVER... it only moved to the right side on the Main Page. On all the other pages, it's still on the Left.

There must be some code to correct that. You can go to our site at www.tunesmith.biz to clearly see what I mean. When you get there, You'll see it on the right,... but if you click on ANY other page, it will be on the left. There must be another code that controls the back page settings. We need it changed.

Al

Anonymous
Unregistered
Anonymous
Unregistered
Graeme Said...

"Someone suggested you make some changes to the align tags on page 1 of this thread. They haven't been made to the code you pasted in.

All I can suggest...

Graeme"

The align tags simply shift the Logo back and forth an inch or so... that is NOT the answer.

Does ANYBODY here know how to do this???? ANYBODY ????

Al


Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
Bots
by Outdoorking - 04/13/2024 5:08 PM
Can you add html to language files?
by Baldeagle - 04/07/2024 2:41 PM
Do I need to rebuild my database?
by Baldeagle - 04/07/2024 2:58 AM
This is not a bug, but a suggestion
by Baldeagle - 04/05/2024 11:25 PM
Is UBB.threads still going?
by Aaron101 - 04/01/2022 8:18 AM
Who's Online Now
3 members (Ruben, Nightcrawler, 1 invisible), 860 guests, and 268 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20230217)