H1 tag

Permalink
Hi - how do I edit <H1> tag and <title> page tag using the cms of concrete5?
I have already added meta description, meta title, meta tags to page properties. I've also changed file name of image logo to be the main keyword for seo (Post in previous forum said to do this). But Semrush report says I haven't got the <H1> tag and <title> page tag right?

shine
 
tommyh replied on at Permalink Reply
tommyh
This all depends on how you site is built as some H1 hard coded as page titles but many do this in the page copy. For me... Go to the page that needs the h1 tag and edit the copy in the WYSIWYG Content Block editor. Highlight the copy and mark it as an H1 using the tool in the editor (Format Drop Down).

Hope this helps.
TMDesigns replied on at Permalink Reply
TMDesigns
think you are getting confused or mislead.

<title> is what C5 uses in the <head> of the page. This would never have a <h1> around it.

The title is pulled in via the name you give the page.

Now in the page its self you normally would give the page a title. so for example the "about us" page would normally have a title in the page of "About Us" or "About company x" this is what you would wrap a <h1> around.

For SEO you need to make sure you keep to a nested strucure
<h1>Main title</h1>
       <p> some intro text maybe</p>
           <h2>Subheader</h2>
               <p> some  text maybe</p>
               <p> some text maybe</p>
               <p> some text maybe</p>
                      <h3>a sub heading within the subheader h2</h3>
                              <p> some text maybe</p>
                              <p> some text maybe</p>
           <h2>New Subheader</h2>
               <p> some  text maybe</p>
               <p> some text maybe</p>
               <p> some text maybe</p>