Appnitro Software Forums » MachForm 2

Logo Area - Increasing the Size


  1. Can you tell me where to find the code to increase the size of the area on top of the Form (where the logo goes)?

    I need to increase the height of the colored area where the logo goes(not the shadow area above it) to at least double what it is by now - default.

    I've tired to increase the px count in all of the CSS sheet settings, but I still havent come across it.

    I found this in the forum

    http://www.appnitro.com/forums/topic/how-to-make-a-customized-header?replies=2#post-4875

    This makes the shadow area wider but I need the area below it to be taller to fit my custom logo.

    Thank you,

    Chris

    Posted 3 years ago #
  2. redityo

    Hi Chris,

    You can change this CSS :

    #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');  /* change this */
    	background-repeat: no-repeat;
    }

    add "height" properties in there, for example :

    #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');  /* change this */
    	background-repeat: no-repeat;
            height: 200px;
    }

    MachForm Support

    Posted 3 years ago #
  3. You are awesome!

    Worked perfectly... THANK YOU!

    I couldn't find it because it wasn't there yet. :)

    Chris

    Posted 3 years ago #

RSS feed for this topic

Reply