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

Logo issue.


  1. allison4403
    Member

    I've uploaded my image into the images folder, and copied the url into the CSS code, but nothing changes on my form. Ideas?

    Here's a copy/paste of what I've got:

    **** Logo Section *****/
    #main_body h1
    {
    background-color:#dedede;
    margin:0;
    min-height:0;
    padding:30;
    text-decoration:none;
    text-indent:-8000px;
    background-image: url('http://eleventhirtysiximages.com/public_html/machform/images/mach.jpg);
    background-position: center;
    background-repeat: no-repeat;
    }

    Posted 14 years ago #
  2. AMurray
    Pro Member

    The URL background-image looks a bit strange. You shouldn't have the folder "public_html" in the URL there.

    Amend the CSS as below:

    background-image: url('http://eleventhirtysiximages.com/machform/images/mach.jpg');

    1) You don't need the folder "public_html" in the URL.
    2) You're missing the closing single quote before the closing parentheses.

    Something to try: if you browse direct to http://eleventhirtysiximages.com/machform/images/mach.jpg it will display the image but http://eleventhirtysiximages.com/public_html/machform/images/mach.jpg does not.

    Posted 14 years ago #
  3. redityo

    Also, you can try to change the css code into like this :

    **** Logo Section *****/
    #main_body h1
    {
    background-color:#dedede;
    margin:0;
    min-height:0;
    padding:30;
    text-decoration:none;
    text-indent:-8000px;
    background-image: url('http://eleventhirtysiximages.com/machform/images/mach.jpg');
    background-position: center;
    background-repeat: no-repeat;
    }

    MachForm Support

    Posted 14 years ago #

RSS feed for this topic

Reply