Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic On/Off image & cell help (Read 4050 times)
MasterKarman
Junior Member
**
Offline


YaBB 2.5.2

Posts: 90
Location: Karmanville
Joined: Feb 14th, 2009
Gender: Male
On/Off image & cell help
Feb 23rd, 2009 at 6:28am
Print Post  
hi
I'm stumped on this, any thoughts would be great
I can't figure out way guests are unable to see the off.gif that is displayed on the board index (like veiwing this forum as a guest). It shows fine for members.
Using 2.3.1 yabb21 style
guest access enabled
guests can view boards/posts
guests can't post

Screen shots:

MembersView

guestview


cheers
  

Now using YaBB 2.5.2 with 40+mods
"The world is a dangerous place to live. Not because of the evil in it, but because of the people who don't do anything about it."


Back to top
IP Logged
 
MasterKarman
Junior Member
**
Offline


YaBB 2.5.2

Posts: 90
Location: Karmanville
Joined: Feb 14th, 2009
Gender: Male
Re: On/Off image & cell help
Reply #1 - Feb 23rd, 2009 at 8:18pm
Print Post  
Additional --
I have 12 mods installed:

Advanced E-Mail Notification Mod for YaBB 2.3. and 2.3.1

Audio Player in Profile for YaBB 2.3/2.3.1

AutoTabs 4 YaBB 2.31

BoardPassword for YaBB 2.3.1

ChatIRC for YaBB 2.3.1

Event Calendar / Birthday List for YaBB 2.3 / 2.3.1

Random Quotes for YaBB 2.3.1

Reason for Editing

Topic Description for YaBB 2.3.1

YaBB Zodiac for YaBB 2.3

YaMMS 4 YaBB231

Yet another Reputation System 4 YaBB 2.3.1
  

Now using YaBB 2.5.2 with 40+mods
"The world is a dangerous place to live. Not because of the evil in it, but because of the people who don't do anything about it."


Back to top
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: On/Off image & cell help
Reply #2 - Feb 25th, 2009 at 3:51pm
Print Post  
It's just a guess: might be a good idea to look at the html code. Maybe the links to the images are not corrent...
  

The Administrator.
Back to top
WWW  
IP Logged
 
MasterKarman
Junior Member
**
Offline


YaBB 2.5.2

Posts: 90
Location: Karmanville
Joined: Feb 14th, 2009
Gender: Male
Re: On/Off image & cell help
Reply #3 - Feb 26th, 2009 at 5:20am
Print Post  
That was my first thought as well, sadly, things can never be that simple... well yes they can and it's much nicer when they are...lol

I've narrowed this down to having moved the info center. Obviously I've missed something or placed something incorrectly. It's hard to tell in the screen shots but if you look closely those cells aren't being called the same as when you are logged in.

I uploaded a fresh board_index.template and everything displayed correctly (minus the info center alterations and moving). In short, I need advice on how to get the info I want from the info center up to the top of my board without causing the above glitch...
My forum is here
  

Now using YaBB 2.5.2 with 40+mods
"The world is a dangerous place to live. Not because of the evil in it, but because of the people who don't do anything about it."


Back to top
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: On/Off image & cell help
Reply #4 - Feb 26th, 2009 at 8:35am
Print Post  
It should be sufficient when you move this code block in BoardIndex.template:

Code
Select All
$boardindex_template .= qq~

<!-- Info Center block start -->

<div class="seperator">
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
	<td class="titlebg" align="center" colspan="2">
		$boardindex_txt{'685'}
	</td>
</tr>
<tr>
	<td align="left" class="catbg" colspan="2">
		$boardindex_txt{'200'}
	</td>
</tr>
<tr>
	<td class="windowbg" width="5%" valign="middle" align="center">
		<img src="$imagesdir/info.gif" border="0" alt="" />
	</td>
	<td class="windowbg2" valign="top" align="center">
		<div class="small" style="float: left; width: 59%; text-align: left;">
			$boardindex_txt{'489'} <b><yabb totalmessages> $boardindex_txt{'21'}</b> $boardindex_txt{'490'} <b><yabb totaltopics> $boardindex_txt{'330'}</b>.<br />
			<yabb lastpostlink> <yabb lastpostdate>
			<yabb recentposts>
		</div>
		<div class="small" style="float: left; width: 40%; text-align: left;">
			$boardindex_txt{'487'} <yabb membercount> $boardindex_txt{'488'}.<br />
			<yabb latestmember>
			<yabb ims>
		</div>
	</td>
</tr>

<tr>
	<td class="windowbg" width="5%" valign="middle" align="center">
		<img src="$imagesdir/online.gif" border="0" alt="" />
	</td>
	<td class="windowbg2" valign="top" align="center">
		<div class="small" style="float: left; width: 90%; text-align: left;">
		$boardindex_txt{'800'} <b><yabb mostusers></b> $maintxt{'30'} <yabb mostusersdate>.<br />
		$boardindex_txt{'801'} <b><yabb mostmembers></b> $maintxt{'30'} <yabb mostmembersdate>.<br />
		$boardindex_txt{'802'} <b><yabb mostguests></b> $maintxt{'30'} <yabb mostguestsdate>.<br />
		$boardindex_txt{'803'} <b><yabb mostbots></b> $maintxt{'30'} <yabb mostbotsdate>.
		</div>
	</td>
</tr>

<tr>
	<td align="left" class="catbg" colspan="2">
		$boardindex_txt{'158'}
	</td>
</tr>
<tr>
	<td class="windowbg" width="5%" valign="middle" align="center">
		<img src="$imagesdir/online.gif" border="0" alt="" />
	</td>
	<td class="windowbg2">
		<div class="small" style="float: left; width: 59%; text-align: left;">
		<yabb users><br />
		<yabb onlineusers>
		<yabb guests><br />
		<yabb onlineguests>
		<yabb bots><br />
		<yabb onlinebots>
		</div>
		<div style="float: left; width: 40%; text-align: left;">
		<yabb groupcolors>
		</div>
	</td>
</tr>
</table>
	<yabb sharedlogin>
</div>

<!-- Info Center block end -->

~;
 

  

The Administrator.
Back to top
WWW  
IP Logged
 
MasterKarman
Junior Member
**
Offline


YaBB 2.5.2

Posts: 90
Location: Karmanville
Joined: Feb 14th, 2009
Gender: Male
Re: On/Off image & cell help
Reply #5 - Feb 28th, 2009 at 12:49am
Print Post  
Thanks Michael. I'll do that when I have a moment and work from there.
Thanks again.
  

Now using YaBB 2.5.2 with 40+mods
"The world is a dangerous place to live. Not because of the evil in it, but because of the people who don't do anything about it."


Back to top
IP Logged
 
MasterKarman
Junior Member
**
Offline


YaBB 2.5.2

Posts: 90
Location: Karmanville
Joined: Feb 14th, 2009
Gender: Male
Re: On/Off image & cell help
Reply #6 - Mar 3rd, 2009 at 2:42pm
Print Post  
Well, I still can't figure this out. I went as far as to wipe everything out and start over with uploading a fresh boardindex template and style sheet with the same results. I don't understand how or where it pulls a different style depending on whether you're logged in or not. I'd hate to start all over from scratch but this is driving me nuts. I could live with it but I'm too much of a perfectionist and I've spent hours trying to solve this....  Huh
  

Now using YaBB 2.5.2 with 40+mods
"The world is a dangerous place to live. Not because of the evil in it, but because of the people who don't do anything about it."


Back to top
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: On/Off image & cell help
Reply #7 - Mar 3rd, 2009 at 11:44pm
Print Post  
I've attached the default template file with moved info center. Is that what you're looking for?
  

BoardIndex_template.txt ( 7 KB | Downloads )

The Administrator.
Back to top
WWW  
IP Logged
 
MasterKarman
Junior Member
**
Offline


YaBB 2.5.2

Posts: 90
Location: Karmanville
Joined: Feb 14th, 2009
Gender: Male
Re: On/Off image & cell help
Reply #8 - Mar 6th, 2009 at 1:08pm
Print Post  
I've got it all sorted now.
I must have been missing a close to a table or cell and I just wasn't seeing it.
Thank you very much for your help.
  

Now using YaBB 2.5.2 with 40+mods
"The world is a dangerous place to live. Not because of the evil in it, but because of the people who don't do anything about it."


Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint