You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

Header Customization

UserPost

5:13 am
December 22, 2009


lvcjmac

New Member

posts 1

1

Great theme (Flexibility 2).  I've got two issues I can't seem to get figured out.

1. I want the header to just have a plain white background without any formatting.  I set the color to white (ffffff) but I can't get the desired effect I'm looking for because of the header background image (.png files).  Is there a way to not have the .png files for the background?

2. I've got a static page set up as the front of the blog.  Is there a way to not show the Page Title?  What I mean by that is when I wrote the page, I gave it a title.  That title shows up before my sales pitch.  Is there a way to hide that?

7:11 am
February 5, 2010


Ryan

Admin

posts 1252

2

For the header, the easiest way is to just enter something in the custom header image blank. Alternative is to upload a transparent gif image to the images directory and enter the name of it with extension in the custom header image blank.

To remove the page title on the static home page, you would need to edit the page.php file something like this:

<?php if(!is_front_page()) { ?>

<h2 class="pagetitle">
        <?php the_title(); ?>
      </h2>

<? } ?>

I didn't test that code, but it should work.