Recent Topics

1 Jan 27, 2005 02:11    

Hello all,

I am seriously considering b2evo for a commentary bb on my site. I haven't seen any posts about this so it might not be possible.

I was wondering how I can customize my blog to show a banner style using a gif. I know very little about php but looked at the code for what appears to be the "Title" ...

'<body>
'<div id="wrapper">

'<?php
'/**
' * --------------------------- BLOG LIST INCLUDED HERE '-----------------------------
'*/
'require( dirname(__FILE__).'/_bloglist.php' );
'// ----------------------------- END OF BLOG LIST '---------------------------- ?>

'<div class="pageHeader">

'<h1 id="pageTitle"><?php $Blog->disp( 'name', 'htmlbody' ) ?></h1>

'<div class="pageSubTitle"><?php $Blog->disp( 'tagline', 'htmlbody' ) '?></div>

'</div>

Anyone know how to change the H1 title to a gif file?

Thanks, :)
Steve

2 Jan 27, 2005 02:35

thats going to be dependant on the skin you are using.. but its as simple as just editing the code


<body>
<div id="rap">
<span class="header">
<a href="http://www.yourdomain.com" title="yourdomain.com"><img src="http://www.yourdomain.com/images/logo.gif" alt="yourdomain.com" /></a>
</span>
<!-- =================================== START OF MAIN AREA =================================== -->

<div id="content">

3 Feb 10, 2005 17:41

To add to Whoo ...

if you still want H1 header data, you can always add something like this:

<span class="header"><a href="www.site.com" "my cool site"><img src="logo.gif" /></a><h1 style="display:none;">My Cool Site</h1></span>

Using the CSS display:none to hide the text from the visual browser, but text-only devices would STILL be able to see your heading as "my cool site".


Form is loading...