• Forum
  • FAQ
  • Docs
Notice: In order to post a support question you have to have an account and be logged in.
Register  or  Login
  1. Hi I would like to get ride of the header space, so the blue space where the logo and the header contact info are displayed so the website tabs display at the top directly. This is required as the page doesn't display otherwise enough of the content....
    How can I do this....if a piece of coding is required what could I enter and where?
    Thanks again for your help!
    Pascale

    Pasci
    12 months ago
  2. Hi Pascale,
    so you would like to remove header completely? Please provide a link and I would help.

    Thanks.

    Max
    12 months ago
  3. No completely, just the space above the logo....I am having problem uploading transparent pictures (what I mean is without white background...they either display with a black background (gif) or they can't be uploaded (eps. format).
    What is the solution as it doesn't look very professional with a white background...http://sehta.khdevelopment.co.uk
    Thanks
    Pascale

    Pasci
    12 months ago
  4. No completely, just the space above the logo....I am having problem uploading transparent pictures (what I mean is without white background...they either display with a black background (gif) or they can't be uploaded (eps. format).
    What is the solution as it doesn't look very professional with a white background...http://sehta.khdevelopment.co.uk
    Thanks
    Pascale

    Pasci
    12 months ago
  5. Hi,

    If you need an transparent background for logo, use the .png format, .gif is not working because of index color mode, and .eps is not an visual image format, and .png formar offers much more colors then .gif format.

    But if you want to remove the top logo padding, then find this code in the style.css file:

    .logo {
    padding: 20px 0 0 0;
    width: 300px;
    float: left;
    }
    

    and replace wirth:
    .logo {
    padding: 0;
    width: 300px;
    float: left;
    }
    

    Then find this code:
    .header_top .container {
    height: 119px;
    }
    

    and replace with this code:
    .header_top .container {
    height: 98px;
    }
    

    Then find this code:
    .header_contacts {
    text-align: right;
    padding-top: 43px;
    color: 
    #325B7B;
    font-family: 'CartoGothicStdBold', Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-shadow: 0 1px 1px 
    white;
    line-height: 1.2em;
    }
    

    and replace with this code:
    .header_contacts {
        color: #325B7B;
        font-family: 'CartoGothicStdBold',Arial,Helvetica,sans-serif;
        font-size: 14px;
        line-height: 1.2em;
        padding-top: 18px;
        text-align: right;
        text-shadow: 0 1px 1px #FFFFFF;
    }
    

    Cheers,
    George

    George
    12 months ago
  6. Hi George and Matt

    I produce a banner in .png with a transparent background but it appears as if the background was black...

    Can you please help? http://sehta.khdevelopment.co.uk

    Pascale

    Pasci
    11 months ago
  7. Hi,

    It seems to be because you use index mode of the image.

    If you use Photoshop to edit the logo, go to Image -> Mode and change from Indexed color to RGB color, the remove the background save as .PNG.

    If you can not get the wanted result, gimve me your logo, and I will help you.

    Cheers,
    George

    George
    11 months ago
  8. Many thanks it worked !

    Pasci
    11 months ago

Add Reply

You must log in to post.

 

Add a new topic!

Chances are your issue is already answered, but if it’s not, you can always create a new topic.

Add new topic

Search forums

Searching for something specific? Type something and press Enter to search.