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

Changeing logo


  1. mig2000
    Member

    I have the machForm on the same server where the database is located. The main web site happens to be on a different server. I need to change the logo at all locations of the forms (admin and user) so it point at our logo. How do I go about to do that. I uploaded our logo to the image folder where the existing logo is and I changed the CSS and it does not show up.

    Posted 15 years ago #
  2. redityo

    Hi,

    It has different way, to change logo in admin and user view. For user view, you can edit your css form and search for this section :

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

    make sure you already set the correct path for "background-image" properties. To change machform admin logo, you can edit "index.css" and try to following these steps :

    1. Add these code to "index.css"

    #header .fix_png  {
    display:none !important;
    }

    2. Search for these code

    #header {
    	background: rgb(20, 66, 130) none repeat; position: relative; height: 100px;
    }

    and replace with one

    #header {
    	background: rgb(20, 66, 130) url(images/your_images.jpg) no-repeat ; position: relative; height: 100px;
    }

    adjust the images path with yours.


    MachForm Support

    Posted 15 years ago #
  3. drbobtampa
    Member

    I went to CSS and changed imagein view.css as per

    /**** Logo Section *****/
    #main_body h1
    {
    background-color:#dedede;
    margin:0;
    min-height:0;
    padding:0;
    text-decoration:none;
    text-indent:-8000px;
    /**** changed this line gif name *****/
    background-image: url('../../../images/mylogo.gif');
    background-repeat: no-repeat;
    }

    But it does not show up. Am I editing the wrong css? Is there a switch I am missing?
    Thanks.

    Posted 15 years ago #
  4. redityo

    Have you upload you "myLogo.gif" file to machform "images" folder ?


    MachForm Support

    Posted 15 years ago #
  5. drbobtampa
    Member

    Yes, it was there. It turns out the install was not done properly and the CSS files were accessible to edit but not to control the display. Once that was fixed, things worked. Now, it IS the case that the topmost image is set to top.gif, so you have to use that name and to modify size etc with CSS related to "top" labels. Thanks to those who responded.
    Bob

    Posted 15 years ago #

RSS feed for this topic

Reply