Page 1 of 1

banner // widgets names

Posted: Fri Jan 02, 2009 2:43 am
by ameo
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

Posted: Fri Jan 02, 2009 3:53 am
by Don Chambers
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}

Posted: Fri Jan 02, 2009 4:00 am
by ameo
i managed to do that in blue_style.css but for sure user.css is much better

what about the other banner thing? i didn't look into index.tpl yet

but i think it has some part of the banner block with the blue style css file!

Posted: Fri Jan 02, 2009 4:08 am
by Don Chambers
I cannot imagine why you would want to eliminate the banner, but I will assume you have your reasons! :wink:

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>

Posted: Fri Jan 02, 2009 4:38 am
by ameo
thanks don, that is the part i thought to be removed but i wasn't sure :)