Recent Topics

1 Aug 08, 2005 15:54    

Hi,

Hope anyone can help, I'm having various problems with the links on the right of my blog...

Firstly, for some reason clicking on the archive links for 2005 refuses to actually bring up the relevant entries... I'm completely lost with that one. 2004 still works fine.
My site is currently http://www.nickmb.co.uk/blogs if you need to see the problem.

Second, more of a minor quibble, is there any way of getting the lists of links to archives and categories to not be bullet pointed? It really doesn't look good.

Thanks in advance,

Nick

2 Aug 08, 2005 16:20

Nick MB wrote:

is there any way of getting the lists of links to archives and categories to not be bullet pointed? It really doesn't look good.

If you open up _archives.php in your skin folder, you will see this lines (around line 19) :

	# this is what will separate your archive links
	if(!isset($archive_line_start)) $archive_line_start = '<li>';				
	if(!isset($archive_line_end)) $archive_line_end = '</li>';

In combination with these lines in your _main.php

<ul>
	<?php // -------------------------- ARCHIVES INCLUDED HERE--------------
		require( dirname(__FILE__).'/_archives.php' );
	// ------- END OF ARCHIVES ------------------- ?>
	<li><a href="<?php $Blog->disp( 'arcdirurl', 'raw' ) ?>"><?php echo T_('more...') ?></a></li>
</ul>

You can see the solution yourself I think...

3 Aug 08, 2005 16:44

Thanks for the bullet point help, think I'm on track now...

If anyone can help with the disappearing archives problem, though, that's still causing big headaches...


Form is loading...