mike_f's profile

782 Messages

 • 

184.8K Points

Wednesday, April 16th, 2014 3:19 PM

Closed

How do I add H tags to my web pages using Sitebuilder Plus?

Adding the H tags is as simple as inserting the following code into an HTML box on the page: Your title goes hereThis code goes in the body of the page and is inserted into a standard html box and positioned on the page in the location you wish for it to appear. To add the html box, click Insert > More > HTML. If you need step by step instructions for adding code to the body click here.

In many cases you will want to edit the font size,style or color. To do this you'll need to enter some CSS code in the head section for that particular page. You can use the script below. To change the size replace the "22" with your desired font size and to change the style, replace the "times" with the font of your choice, ie. Arial, Helvetica, sans-serif, etc. If you wish to change the color, this page is an excellent source for finding your desired hex value for your color choice.
H1 {font-size:22px;font-family: times;color: #000080       }


To access the head section, click Page Settings > Advanced Settings, and then paste the code in the head section like shown in this image. If you need help adding the CSS code to the head section of the page click here

If you intend to use H2-H6 tags you will generally use progressively smaller fonts so that search engines understand the H1 content is the most important content on the page, ie.

h2 { font-size: 22px;}
h3 { font-size: 18px;}
h4 { font-size: 16px;}
h5 { font-size: 12px;}
h6 { font-size: 10px;}

This conversation is no longer open for comments or replies and is no longer visible to community members.

No Responses!