logo

This is an old version of this answer!

Return to the current answer
Hello Allie,

Add Logo

1. Open your favorite FTP application

2. browse /wp-content/themes/modularity-lite/

3. upload your logo to /images/

4. edit header.php

5. scroll to line 32 “<?php bloginfo('name'); ?> “

6. replace with “<img src="<?php bloginfo('template_directory'); ?>/images/logo.jpg "/>”

7. save and upload

--

Fix Navigation

1. edit nav.php

2. replace ‘<div id="nav">bla bla bla</ul>“

with

<div id="nav">
<ul>
<li class="drop">
<?php wp_list_pages('orderby=name&depth=3&title_li='); ?>
</li>
</ul>


3. save and upload

Presto!

West Coast Design Co. | 08/08/10 at 10:57pm

This is an old version of this answer!

Return to the current answer