• boogoreu

    (@boogoreu)


    I want to make the titles of the homepage and individual posts bold.
    So I added
    ‘.entry-title a {font-weight:900; !important;}’
    to css, but it doesn’t apply.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator threadi

    (@threadi)

    The titles on the details page don’t have links, so this will do:

    .entry-title { font-weight: 900; }

    In Archives, however, they are linked, so your specification should work there – I just don’t see it in the source code. Where did you insert it?

    Thread Starter boogoreu

    (@boogoreu)

    As you said, I modified the css using ‘Additional css’, but there is no change.

    Moderator threadi

    (@threadi)

    I see the code in the source code of the page. Currently you have the following there:

    blockquote {    margin-left: 0px; !important; /*you can adjust this number*/} //인용구의 앞부분 공백 제거해주는 코드#wpdcom .wpd-form-row div.wc_email-wrapper {     display: none !important; } //댓글에서 이메일 기입란 제거해주는 코드.entry-title { font-weight: 900; !important; }

    My recommendation would be to do without the special characters for once. Maybe the browser chokes on them when interpreting the code. Just write:

    blockquote {
        margin-left: 0px; !important;
    } 
    
    #wpdcom .wpd-form-row div.wc_email-wrapper { 
        display: none !important; 
    }
    
    .entry-title { font-weight: 900; !important; }

    That’s all.

    Thread Starter boogoreu

    (@boogoreu)

    As you said, I modified the css using ‘Additional css’

    and at ‘post page‘ I can see the change the font-weight

    but at ‘main page‘ I can’t see the change the font-weight

    and I want to change h2, h3, h4 font-weight too

    • This reply was modified 3 years ago by boogoreu.
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘post title css modifying’ is closed to new replies.