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
Started 15 years ago by Jerry82 | 13 posts |
-
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 # -
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 # -
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,
DarrenPosted 15 years ago # -
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 # -
Perfect! Worked like a charm.
Thanks much, DarrenPosted 15 years ago # -
Perfect :) I was looking for this too.
Posted 14 years ago # -
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 # -
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 # -
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 # -
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 # -
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 # -
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 12 years ago # -
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 12 years ago #
Reply
You must log in to post.