How to replace the grey header of secondary pages

Discussion in 'RoadFighter WordPress Theme' started by freedomind, Sep 13, 2013.

Thread Status:
Not open for further replies.
  1. freedomind

    freedomind New Member

    Joined:
    Aug 17, 2013
    Messages:
    19
    Likes Received:
    0
  2. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .header_container.not_home {
    background: url(http://altovalleparapente.com.ar/wp-content/uploads/2013/09/Juan-despegue-Famatina-1024x545.jpg) center repeat;
    }
    This will solve your issue.
     
  3. o1961o

    o1961o New Member

    Joined:
    Dec 22, 2013
    Messages:
    2
    Likes Received:
    0
    Hi
    That worked and now I have white background, but how do I insert images to the headers for the secondary pages?

    Thanks
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160

    Hello,

    Please do let me know your website link.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  5. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
    Hi Everybody,

    I inserted the code for white area, as you can see:

    http://www.sitodisuccesso.com/verdeflora/malattie-delle-piante-non-farla-morire/

    The result is not nice, can you suggest me in whch way I can improve the risult.

    Another question please.

    In article text I see two color, like a little shadow "A quanto pare la convinzione di non avere il pollice verde e di non essere “capaci” a mantenere in vita una pianta è così diffusa da comportare spesso la rinuncia all’acquisto, temendo malattie delle piante che pensiamo letali.
    Eppure si tratta di un timore spesso infondato, nella maggior parte dei casi salvare una pianta è veramente cosa facile e per di più gratuita"
    How I can remove this problem? I like a normal color text.
    :)
    thanks in advance
     
  6. Piyush

    Piyush Support Staff

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

    1. If your are talking about the repetition of image in background of header then
    paste the code given below also in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .header_container.not_home {
    background-repeat: no-repeat;
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important;
    } 
    2. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
     .content-bar .post .post_content {
    text-shadow: none;
    }
    
    This will remove shadow from the text.
     
  7. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
    Thank you.

    I fixed the shadow, but I have not solved the not nice header in secondary pages.

    I inserted your code:

    .header_container.not_home {
    background-repeat: no-repeat;
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important;
    }

    Now the result is a grey area. I like to have a section of the sliding home page images like header.
    I mean from the top to the begninning of the article content or page content.
    Is it possibile?
     
  8. Piyush

    Piyush Support Staff

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

    I think you have removed the code for image background from the custom css section due to which the default image is displaying.

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

    Code:
    .header_container.not_home {
    background: url( Enter your image URL address here) center no-repeat;
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important;
    }
    
    This will solve your issue.
    NOTE : Use banner size of image for the header background, it will look better.
     
  9. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
  10. 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:
    .page_heading_container {
    display: none;
    }
    .page-content {
    margin-top: 20px;
    }
     
    You can adjust the value of "margin-top" as per your requirement.
    This will solve your issue.
     
  11. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
    Perfect!

    I think it's real better.

    Two other (maybe small) questions.

    Is it possibile to have white as background color? (I see in styling options there is not white color)

    In home page I see a colored frame around slidling images (in grey color), in left, down, upper side but not in right side. I think or the frame there is in all 4 parts or not.

    Thanks in advance.
     
  12. Piyush

    Piyush Support Staff

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

    1. Could you please specify your issue with the help of screenshot images that at which area you want to apply background color.

    2. Yes, the border on the slider is present in all four side but it is not displaying from the right side because scroll bar of browser is hiding it.
     
  13. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
    Here I am.

    1

    [​IMG]
     
  14. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  15. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
    Sent.

    Thanx
     
  16. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  17. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  18. pcmanager

    pcmanager Guest

    Joined:
    Apr 15, 2013
    Messages:
    22
    Likes Received:
    1
    T H A N X!!!
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page