Ok. I will give it a try. I saw a few suggestions on how to hide site title and description (some describe a line appearing after they do this).
I am not clear on the following:
1. Where I am supposed to look for the style.css, am I going to the child them (which contains the code I entered only) or the original twentytwelve theme? How does this work.
2. After I do this, what is the next step? Can you please give more direction on the suggestion below. I am new to this.
—————————————————————–
When I looked at the twenty twelve theme (appearance->editor) I did not see anything regarding “#site-title” in the style.css area. I did see the below under header.php
<h1 class="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</hgroup>
—————————————————————
The below instruction was found on the forum but once again I do not see site-title under style.css. Please advice! Thanks in advance!
——————————————
go to styles.css and look for:
#site-title {
directly underneath add
display:none;
That hides the title.
Now look for:
#site-description {
and then directly beneath that like before add:
display:none;
Now if you want to get rid of the small space above it look for this:
#header {
padding: 30px 0 0 0;
}
and change 30px to 0 like this:
#header {
padding: 0 0 0 0;
}
[please mark any posted code – https://codex.www.ads-software.com/Forum_Welcome#Posting_Code ]