Appnitro Software Forums » MachForm 2

Can you make the title of the form something other than a H1?


  1. Hi

    I was wondering if it's possible to change the title of the form to something other than a H1 tag?

    We currently have the form popping up on our site via a Javascript plugin, but the data is loaded before they click the button and the title of the form, which is a H1, is interfering with the SEO of the website.

    Is it possible to change the title to a H2 or H3?

    Thanks
    Steve.

    Posted 7 months ago #
  2. redityo

    Machform already use h2 tag for the form title, may be you refer to h1 tag on the logo. If so, you can change the tag from "includes/view-functions.php" file. Edit the file and go to around line 1847 for this code :

    <h1><a>{$form->name}</a></h1>

    then change it to

    <h3><a>{$form->name}</a></h3>

    After that, edit your form css and search for these code :

    /**** Logo Section  *****/
    #main_body h1
    {
    	background-color:#dedede;
    	margin:0;
    	min-height:0;
    	padding:0;
    	text-decoration:none;
    	text-indent:-8000px;
    	background-image: url('../../../images/machform.gif');
    	background-repeat: no-repeat;
    }

    then change it to

    /**** Logo Section  *****/
    #main_body h3
    {
    	background-color:#dedede;
    	margin:0;
    	min-height:60px;
    	padding:0;
    	text-decoration:none;
    	text-indent:-8000px;
    	background-image: url('../../../images/machform.gif');
    	background-repeat: no-repeat;
    }

    that would do it


    MachForm Support

    Posted 7 months ago #

RSS feed for this topic

Reply