• Anyone know how to set this up. My site just says catagory link, catagory linl 1. How do I change this to pages?
    Where can I upload my header?

    My site looks like this now: culturesofsoulrecords.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • How do I change this to pages?

    Try editing header.php and replacing:

    <a href="#">Category Link 1</a> / <a href="#">Category Link</a> / <a href="#">Category Link</a> /  <a href="#">Category Link</a><br />
    
    <a href="#" style="font-weight:normal;">About</a> / <a href="/contact/" style="font-weight:normal;">Contact</a> / <a href="#" style="font-weight:normal;">Privacy</a> / <a href="archives/" style="font-weight:normal;">Archives</a></div>

    with <?php wp_list_pages('title_li=');?>

    Where can I upload my header?

    Upload your header image (eg header.jpg) to wp-content/themes/modicus-remix-02/images. Then edit header.php and change:

    <h1><?php bloginfo('name'); ?></h1>

    with:

    <h1><img src="<?php bloginfo('template_directory'); ?>/images/header.jpg" width="xxx" height="yyy" alt="<?php bloginfo('name'); ?>" /></h1>

    where xxx = the image’s width and yyy = the image’s height (both in pixels)

    VERY THANKS!!!! i use the same theme and now my code from header.php looks like this:

    <h1><a href="<?php echo get_option('home'); ?>/"> <img src="<?php bloginfo('template_directory'); ?>/images/homerosa.png" alt="
            <?php bloginfo('name'); ?>
    
          </a></h1>
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Editing Modicus Remix’ is closed to new replies.