make logo size of header

Discussion in 'Appointway WordPress Theme' started by correctbodymaintenance, May 23, 2014.

  1. correctbodymaintenance

    correctbodymaintenance Guest

    Joined:
    May 9, 2014
    Messages:
    13
    Likes Received:
    0
    Hi, I want to make my logo the full size of the header. Can you please tell me how I do this?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    If you want to display logo in the full size of the header then you have to remove the Top Right Contact Detail section.
    Go to the header.php file present in your theme directory and follow the instruction shown in the image given below.

    [​IMG]
     
  3. correctbodymaintenance

    correctbodymaintenance Guest

    Joined:
    May 9, 2014
    Messages:
    13
    Likes Received:
    0
    Thank you for the reply. The above worked, however I would like to make the logo the size of the green(as below). Can you please advise how I do this? I have added a screenshot to help.
     

    Attached Files:

  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .header .logo img {
    visibility: hidden;
    }
    div.header_container {
    background-image: url(http://correctbodymaintenance.com/wp-content/uploads/2014/05/header4.jpg);
    background-size: 100%;
    }
     
    This will solve your issue.
     
  5. correctbodymaintenance

    correctbodymaintenance Guest

    Joined:
    May 9, 2014
    Messages:
    13
    Likes Received:
    0
    Thank you. This worked
     
  6. correctbodymaintenance

    correctbodymaintenance Guest

    Joined:
    May 9, 2014
    Messages:
    13
    Likes Received:
    0
    Hello,
    We just checked the website on iphone and the header is tiled, when we only want one image to come through. Can you please suggest a correction of this?
     

    Attached Files:

  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard
    Code:
    div.header_container {
    background-image: url(http://correctbodymaintenance.com/wp-content/uploads/2014/05/header4.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    }
     
    instead of
    Code:
    div.header_container {
    background-image: url(http://correctbodymaintenance.com/wp-content/uploads/2014/05/header4.jpg);
    background-size: 100%;
    } 
    This will solve your issue.
     
  8. correctbodymaintenance

    correctbodymaintenance Guest

    Joined:
    May 9, 2014
    Messages:
    13
    Likes Received:
    0
    Thank you, this works, however please see attached mobile view.
    We would like the header image to sit 'flush' with the green header.
     

    Attached Files:

  9. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    div.header_container {
    background-size: 100% 100%;
    } 
    I hope this will solve your issue.
     

Share This Page