how can i remove the whole banner? so the site would be just navbar then conent and sidebars
i'm using BP theme
also how to change the widgets names and prevent it from being ALL CAPITAL? like the similar post here
http://board.s9y.org/viewtopic.php?t=14428
thanks
banner // widgets names
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
Based on that post, you might be using a user override stylesheet. If so, add this to user.css:
Code: Select all
.serendipitySideBarTitle {text-transform: none}=Don=
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
I cannot imagine why you would want to eliminate the banner, but I will assume you have your reasons!
Delete this from index.tpl:
Delete this from index.tpl:
Code: Select all
<!-- #serendipity_banner: this is the header area. it holds the blog title and -->
<!-- description headlines -->
<div id="serendipity_banner">
<h1><span class="{if $template_option.firbtitle == 'false'}in{/if}visible"><a class="homelink1" href="{$serendipityBaseURL}">{$head_title|@default:$blogTitle|truncate:80:" ..."}</a></span></h1>
<h2><span class="{if $template_option.firbdescr == 'false'}in{/if}visible"><a class="homelink2" href="{$serendipityBaseURL}">{$head_subtitle|@default:$blogDescription}</a></span></h2>
</div>=Don=