Appnitro Software Forums » MachForm

Hiding Form Title

(6 posts)

  1. Jerry82
    Member

    How do I hide the form title on the website? It would be nice to have this option in the backend.

    Posted 2 years ago #
  2. I'm not sure with your questions, if you no need form title you can simply set "form title" properties to empty.
    Or what do you mean is "machform" logo ?

    Posted 2 years ago #
  3. darrenb
    Member

    Hi,

    I would also like to hide the title because we embed (with iframe) the form on a page that already has a title.

    Setting the form title property to empty works, but the form manager does not show the form name.

    A little "Hide title" checkbox would be great :)

    Thanks,
    Darren

    Posted 2 years ago #
  4. Hi Darren,

    Thank's for your suggestion :) , actually you can hide it by CSS instead of make your "title" property empty. To do this, try to search this code in your CSS form :

    #main_body .form_description h2
    {
    	clear:left;
    	font-size:160%;
    	font-weight:400;
    	margin:0 0 3px;
    }

    replace with this one

    #main_body .form_description h2
    {
    	clear:left;
    	font-size:160%;
    	font-weight:400;
    	margin:0 0 3px;
            display:none !important;
    }
    Posted 2 years ago #
  5. darrenb
    Member

    Perfect! Worked like a charm.
    Thanks much, Darren

    Posted 2 years ago #
  6. sitesme
    Member

    Perfect :) I was looking for this too.

    Posted 2 years ago #

RSS feed for this topic

Reply

You must log in to post.