This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 2

Hiding Form Title


  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 15 years ago #
  2. redityo

    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 ?


    MachForm Support

    Posted 15 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 15 years ago #
  4. redityo

    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;
    }

    MachForm Support

    Posted 15 years ago #
  5. darrenb
    Member

    Perfect! Worked like a charm.
    Thanks much, Darren

    Posted 14 years ago #
  6. sitesme
    Member

    Perfect :) I was looking for this too.

    Posted 14 years ago #
  7. radixbv
    Member

    it tried in a couple of css. files as the #main_body .form_description h2 is in a couple.

    I also tried the custome css code of the form

    From the inspector i learned that the tag seems to be oke.

    Questons:
    Does this work also for V3.
    which Css file should I edit.

    Posted 12 years ago #
  8. radixbv
    Member

    Oke

    Suddenly the custom form css code seems to be working now...

    Question now remains. Where is the custom css stored. You can put it in, but the next time you can't see it.

    Posted 12 years ago #
  9. yuniar

    As of v3, you aren't supposed to edit the CSS file directly. Instead, you can now use the theme editor and put any custom CSS code into the "Advanced" section of your theme.


    MachForm Founder

    Posted 12 years ago #
  10. radixbv
    Member

    Oke. thats clear.

    but can you later edit this. Now it's put in once and the next time you don't see it.
    is it overwriting or ?

    Posted 12 years ago #
  11. yuniar

    the advanced section shouldn't be overwritten. Just make sure to save your theme after editing the advanced code. You should be able to edit it again later.


    MachForm Founder

    Posted 12 years ago #
  12. jraitchi
    Member

    How about getting rid of the top border, the one right below the title? We just want a clean form, two boxes and a submit button we can throw in the middle of a webpage, nor borders. Thanks!

    Posted 11 years ago #
  13. jraitchi
    Member

    Finally found the answer to my own question here in the forums, add this to the theme CSS:

    #main_body .form_description[class] { display:none; }

    Posted 11 years ago #

RSS feed for this topic

Reply