Recent Topics

1 Jan 31, 2006 02:30    

Hi,

I have three blog sections on my site: Stories, Gigs, and Tangents. Here's the page:

http://www.michaelgaither.com/b2/blogs/multiblogs.php

The titles for each of these sections are active links, so that you can click a Blog title, and it opens that blog onto a new page. However, I don't want these titles to be links:

Reason: They pick up the active-link color (blue), and I'd rather they didn't.

Is there a way to make these titles just be plain text?

Thanks.

2 Jan 31, 2006 22:53

The code that creates the title is in multiblogs.php. You could remove the link part, or you could add some css to make the link display in plain black, rather than in blue.

Find this:

<h2>#1: <a href="<?php $Blog->disp( 'blogurl', 'raw' ) ?>"><?php echo $Blog->disp( 'name', 'htmlbody' ) ?></a></h2>


And change it to this:

<h2>#1: <?php echo $Blog->disp( 'name', 'htmlbody' ) ?></h2>


You may or may not have the #1 part. If you want to keep it as a link, but change the text color to black, then change it to this instead:

<h2>#1: <a href="<?php $Blog->disp( 'blogurl', 'raw' ) ?>" style="color:black;text-decoration:none"><?php echo $Blog->disp( 'name', 'htmlbody' ) ?></a></h2>


In any case, repeat for the other parts of the file that look like this.


Form is loading...