either doing with css:
add some of these styles to style.css:
.page-id-48 #branding { display:none; }
repeat this with the ids of each selected page.
or edit header.php;
and add a conditional statement before line 50:
<?php if( ! (is_page('pagename1') || is_page('pagename2') || is_page('pagename2') ) ) : ?>
<div id="branding">
closing it after line 69:
</a></div><!-- #branding -->
<?php endif; ?>
wrapping the whole #branding div.
http://codex.wordpress.org/Function_Reference/is_page
ps: imho, cholesterol is a business myth – perpetuated since the farrington heart study – without real scientific background.
Thanks, that did it. I edited the Header.php .
Now I’m trying to remove the title of the page. I think this is related to wp_title?
Thanks,
Tim
look into page.php;
these lines with the_title():
<?php if ( is_front_page() ) { ?>
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } ?>
if you want no title on any page, you can remove the full code above.
Thanks for your help.
Now with the removal of the header image I have blank space – about five lines at the top. Is there a way to delete them?
Many Thanks again,
Tim
can’t reproduce the space issue; in my testblog, if i use the css method, i get less white space than the height of the black menu bar.
i would need a link to your site to try to make any suggestions.
in the page you linked to:
all this stuff:
<p><html><br />
<head></p>
<link rel ="shortcut icon" href="http://www.incansoft.com/Images/fav.ico">
<meta name="Creator" content="http://timesavinginternetmarketingtools.com/"><br />
<meta name="Copyright" content="All images, text and code found on this web site are © 2000 - 2010, Incansoft, All rights reserved worldwide...";><br />
<meta name="Description" content="Submit Your Articles to More Than 450 Article Directories Completely On Autopilot For Massive Backlinks"><br />
<meta name="Keywords" content=""><br />
<meta name="Distribution" content="global"><br />
<meta name="Publisher" content="http://timesavinginternetmarketingtools.com/"><br />
<meta name="Rating" content="General"><br />
<meta name="Revisit-after" content="5 days"><br />
<meta name="Robots" content="index,follow"><br />
</head><br />
<body style="background-image: url(http://www.incansoft.com/Images/IS0030B.jpg); background-color: #FFFFF8; font-family: Trebuchet MS; font-size: 12pt; text-align: center;"><br />
<center></p>
does not belong into a post or page;
what is the purpose of it?
if it is needed, there will be a better way to include it into the head section.
—–
on your start page, http://timesavinginternetmarketingtools.com/
the white space is caused by ‘padding-top:30px;’ of #header style; change that to ‘padding-top: 0px;’.
for really absolutely no white space above the header image, add this to the end of style.css:
#site-title, #site-description{display:none;}