 |
 |
 |
 |
Registered: 06/05/06
Posts: 469
|
|
|
 |
 |
 |
 |
|
 |
 |
 |
 |
#73922 - 01/06/02 11:44 PM
How Do You Move The Main Logo Location???
|
|
|
We recently opened a Songwriting Message Board at www.tunesmith.bizUnfortunately, 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! Al [This message was edited by loveisaslowdance on 06 Jan 02 at 10:00 PM.]
|
|
Top
|
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
|
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#73925 - 01/07/02 06:38 AM
Re: How Do You Move The Main Logo Location???
|
|
|
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
|
|
Top
|
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#73928 - 01/07/02 03:32 PM
Re: How Do You Move The Main Logo Location???
|
|
|
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 Moderator Graphics, Styles & TemplatesUBBDesign.com: custom graphics and layouts for: UBB ™ & UBBT ™ As well as Custom Web Development
|
|
Top
|
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#73934 - 01/07/02 10:08 PM
Re: How Do You Move The Main Logo Location???
|
|
|
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. ------------------------- http://www.sfpunk.com Winner of UBBDev's September Member Spotlight
|
|
Top
|
|
|
|
|
 |
 |
 |
 |
|
|