Recent Topics

1 Dec 03, 2005 20:02    

Hi there,

I'm currently editing the basic "custom" skin to my liking and i'm wanting to add a thin logo in the white space next to the 4 blog links at the very top.

Does anybody know where'd i'd go to do this?

thanks in advance

David

2 Dec 03, 2005 20:13

That's an unordered list that's created by the _bloglist.php file in the custom folder. You should be able to edit that file, find the line that looks like this:

if(!isset($blog_list_start)) $blog_list_start = '<ul id="bloglist">';

and make it look like this:

if(!isset($blog_list_start)) $blog_list_start = '<ul id="bloglist"><li><img src="yourlogo.jpg" alt="Logo" /></li>';

3 Dec 03, 2005 21:18

Hey thanks for the quick response! that worked a treat, excpet i want it to float over in the right hand side. When i tell it to "float:right" though it doesn't expand the white bit but overlaps onto the header section?

Any thoughs?

thanks again

David

4 Dec 03, 2005 22:54

Hmm, maybe something like this would work.

if(!isset($blog_list_start)) $blog_list_start = '<ul id="bloglist">';
if(!isset($blog_list_start)) $blog_list_end = '</ul><img src="yourlogo.jpg" alt="Logo" style="float:right" />';


Form is loading...