how to change title color in wordpress

Discussion in 'HTML & Website Design' started by amir214, Feb 18, 2014.

  1. #1
    hii...
    i am using simple sense theme of readythemese.. but when i choose post section its title comes in very simple format ..i can edit headings and other content easily because it has options but for Title there is no option how to edit its font and color???
     
    Solved! View solution.
    amir214, Feb 18, 2014 IP
  2. competent123

    competent123 Notable Member

    Messages:
    1,752
    Likes Received:
    71
    Best Answers:
    6
    Trophy Points:
    255
  3. #3
    In style.css, Find
    .leftcontent h1 {margin:0; ........ (rest of the line)
    add --> color:blue;
    so the line will be
    .leftcontent h1 {margin:0; color:blue; .........rest of the line
    Save it. Reload/Refresh website.
    you can add any color, for example
    color:red;
    or hexa like
    color: #A73A3A;
    or RGB
    color: rgb(61, 119, 170);
     
    WebLab, Feb 18, 2014 IP
  4. amir214

    amir214 Greenhorn

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #4

    Thanks a lot the way you explained i did and it worked its great thanks a lot :D ..

    and if i wana change font family and style ..will it be the same way ??? or 1st i have to delete anything in this or or just add the other code for fnt ?
     
    amir214, Feb 18, 2014 IP
  5. Akash47

    Akash47 Member

    Messages:
    185
    Likes Received:
    18
    Best Answers:
    1
    Trophy Points:
    45
    #5
    Find the previous code and replace it with whatever new font code you need.
     
    Akash47, Feb 18, 2014 IP
  6. WebLab

    WebLab Active Member

    Messages:
    229
    Likes Received:
    7
    Best Answers:
    2
    Trophy Points:
    65
    #6
    Can't tell you step by step without looking into theme, plus that would require a little knowledge at your side too. I thinks its a paid theme, so you can contact them.
     
    WebLab, Feb 18, 2014 IP
  7. amir214

    amir214 Greenhorn

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #7


    here it is a code where i put the color code as you told me ...
    .leftcontent h1 {margin:0; color:#e10707; font-size:24px; border-bottom:5px solid #e5e5e5; padding-bottom:2px; -ms-word-wrap: break-word; word-wrap: break-word;}

    just wana knw about how to gve that heading style i mean how to change it font and bold it
     
    amir214, Feb 18, 2014 IP
  8. WebLab

    WebLab Active Member

    Messages:
    229
    Likes Received:
    7
    Best Answers:
    2
    Trophy Points:
    65
    #8
    I think the Title is already bold.
    But you can try this :
    Add this for bold --> font-weight:bold;
    leftcontent h1 {margin:0; color:#e10707; font-size:24px; font-weight:bold;(rest of the line)

    For font, it imports font style from google, that must be in another css file.
     
    WebLab, Feb 18, 2014 IP
  9. WebLab

    WebLab Active Member

    Messages:
    229
    Likes Received:
    7
    Best Answers:
    2
    Trophy Points:
    65
    #9
    H1 is always bold by default.
     
    WebLab, Feb 18, 2014 IP