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

Shadows


  1. Vpl
    Member

    Hi,
    Is it possible to remove the shadows on the forms (images/top.png)? I know it's possible but that would cause it to remove the shadows from all the forms, I just want the shadows removed from one form. I don't know if that's possible?

    Posted 15 years ago #
  2. Saghalie
    Pro Member

    Look in the CSS for that form. You should be able to remove it for just that form.

    Saghalie
    http://www.beautiful-beginnings.org

    Posted 15 years ago #
  3. yuniar

    Yes, Saghalie is right, you can remove it from the CSS.

    Search for these:

    #top
    {
    	display:block;
    	height:10px;
    	margin:10px auto 0;
    	width:650px;
    }
    
    #bottom
    {
    	display:block;
    	height:10px;
    	margin:0 auto;
    	width:650px;
    }


    change the display property to none, like this:

    #top
    {
    	display:none;
    	height:10px;
    	margin:10px auto 0;
    	width:650px;
    }
    
    #bottom
    {
    	display:none;
    	height:10px;
    	margin:0 auto;
    	width:650px;
    }

    MachForm Founder

    Posted 15 years ago #

RSS feed for this topic

Reply