Contact page header image

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #6287
    lcm
    Member

    For some reason I cannot find where to remove the header image on the contact page:

    dev.sfmetrics.com/contact-us/

    Any ideas?

    #6289
    lcm
    Member

    Ok so its not just the contact page but any page that we delete the header image we get this default image when we want no header image.

    How do we prevent this?

    http://dev.sfmetrics.com/services/

    Some pages we dont mind having a header image while others we don’t need it.

    #6392
    Nexus
    Moderator

    You should have an option to remove the header background in the theme options. Navigate to theme options > Backgrounds and you must find the image that is set as the default background. You can set backgrounds for individual pages by editing the page and set the custom header content there.

    Besides your site is not loading. If you still have issues reply back here as a private message with login info and I can take a look.

    #6540
    lcm
    Member
    This reply has been marked as private.
    #6613
    Nexus
    Moderator

    The problem is all due to presence of the following code in custom.css file in / custom directory –

    #before-content-area-wrap {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center top;
    background-image: url(https://www.livemeshthemes.com/squash//wp-content/uploads/2013/05/bg-slide1.jpg);
    background-color: transparent;
    background-size: cover;
    border: none;
    box-shadow: none;
    padding: 115px 0;
    }
    

    You can remove the code altogether and set your background in the page level.

    #6648
    lcm
    Member
    This reply has been marked as private.
    #6651
    Raghavendra
    Moderator

    Pls have a look at css/skins/default.css file. You can override the above by changing the following Custom CSS –

    #before-content-area-wrap { background: -o-linear-gradient(bottom, #50afdf 1%, #46a5d5 51%);
        background: -moz-linear-gradient(bottom, #50afdf 1%, #46a5d5 51%); background: -webkit-linear-gradient(bottom, #50afdf 1%, #46a5d5 51%);
        background: -ms-linear-gradient(bottom, #50afdf 1%, #46a5d5 51%); background: linear-gradient(bottom, #50afdf 1%, #46a5d5 51%);
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.01, #50afdf), color-stop(0.51, #46a5d5));
        background-color: #46A5D5; border-bottom: 1px solid #f9f9f9; box-shadow: 1px 1px #46a5d5; }
    
Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘Enigmatic Theme Support’ is closed to new topics and replies.