sbdanielb wrote:This happened out of the blue, it only shows like this for guests, why?
Can see it in screenshot below.
Hi sbdanielb,
I am not sure why you would be experiencing this problem with the Guest view Only, unless you have misplaced or modified the code. Can you provide me with a link to your board and a test account?
As for changing the color of the block you would first have to create a new class: So lets open up your common.css file in your themes folder and find this code:
- Code: Select all
.navbar {
background-color: #ebebeb;
padding: 0 10px;
}
After add:
- Code: Select all
.navbar1 {
background-color: #ebebeb;
padding: 0 10px;
}
Now I do not know what color you want this block to be so change #ebebeb to your desired color.
Now let's go to your index.html file and find that code you pasted to install the mod:
Should be this block:
- Code: Select all
<div id="page-body" class="navbar">
<div class="inner"><span class="corners-top"><span></span></span>
<ul class="linklist">
<li>
<!-- IF S_USER_LOGGED_IN -->
{S_TIME} {WELCOME_REGISTERED}
<li class="rightside">[{LAST_VISIT_DATE}] [{CURRENT_TIME}]</li></span>
<!-- ELSE -->{S_TIME} {WELCOME_GUEST}<li class="rightside">[{CURRENT_TIME}]<!-- ENDIF -->
</li></li>
<li class="rightside">
</li>
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- IF U_MCP --><p>[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ENDIF -->
Changed the very first line of that block:
- Code: Select all
<div id="page-body" class="navbar">
to
- Code: Select all
<div id="page-body" class="navbar1">
make sure you purge your cache after this change but first I would advise you fix that little template problem first.














