Change font at the header for resumeway theme

Discussion in 'ResumeWay WordPress Theme.' started by SantoshWagh, Jun 27, 2014.

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

    SantoshWagh New Member

    Joined:
    Mar 5, 2014
    Messages:
    9
    Likes Received:
    0
    I wanted to change the font at the header of the resumeway theme, see the image attached, wanted change the font at the highlighted area
    heavenfont change.png
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.

    Thanks & Regards
    Gourav Shrivastava
     
    smith likes this.
  3. SantoshWagh

    SantoshWagh New Member

    Joined:
    Mar 5, 2014
    Messages:
    9
    Likes Received:
    0
  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:
    .rw-author-name h1 {
    font-family: symbol;
    } 
    In place of "symbol" you can put your font.
    This will solve your issue.
     
  5. SantoshWagh

    SantoshWagh New Member

    Joined:
    Mar 5, 2014
    Messages:
    9
    Likes Received:
    0
    Thanks it works. How do i change the background color and font color
     
  6. 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:
    .rw-author-name h1 {
    background: green;
    color: black;
    border-left: 3px solid blue;
    border-right: 3px solid blue;
    }
    .rw-author-name h1 a {
    color: black;
    }
    .rw-author-name h1 a:hover {
    color: red;
    }
     
    In place of "red", "green", "black" and "blue" you can put your color or color code.
    This will solve your issue.
     
  7. SantoshWagh

    SantoshWagh New Member

    Joined:
    Mar 5, 2014
    Messages:
    9
    Likes Received:
    0
    Thanks it works...
     
Thread Status:
Not open for further replies.

Share This Page