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

Hide form name


  1. Edken
    Member

    Hi,
    Im wondering if it is possible to hide the name of a form from public view as I am using a custom header image for the form but would still like to be able to name the form so when I'm on the Admin page I can easily identify my forms.

    I hope that makes sense and I look forward to another helpful response.

    Ed

    Posted 13 years ago #
  2. yuniar

    Yes, you can edit the CSS of your form for this.
    Search for this CSS code:

    #main_body .form_description
    {
    	border-bottom:1px dotted #ccc;
    	clear:both;
    	display:inline-block;
    	margin:0 0 1em;
    }
    
    #main_body .form_description[class]
    {
    	display:block;
    }

    change it to become:

    #main_body .form_description
    {
    	border-bottom:1px dotted #ccc;
    	clear:both;
    	display:none;
    	margin:0 0 1em;
    }
    
    #main_body .form_description[class]
    {
    	display:none;
    }

    MachForm Founder

    Posted 13 years ago #
  3. conceive
    Member

    Is this the view.css file in main directory?

    This edit doesn't seem to work in v3.4

    Posted 11 years ago #
  4. yuniar

    As of v3, I suggest not to modify the view.css directly. Instead, you should add any custom CSS code into your form's theme.
    So, edit the theme of your form, click the "Advanced CSS" menu-item from the dropdown and put the CSS there.


    MachForm Founder

    Posted 11 years ago #
  5. williamansley
    Member

    @conceive: The view.css file in the main directory is the source for all of the local copies of view.css that are associated with each individual form. If you have made the suggested changes to that file, you will see that all future forms you create will have the title hidden, so it would be a good idea to change it back if you have modified it. I am just passing this along to help you avoid a potential unpleasant surprise in the future.

    Posted 11 years ago #
  6. conceive
    Member

    ok thx for the heads-up!
    :]

    Posted 11 years ago #

RSS feed for this topic

Reply