• Resolved aoi5150

    (@aoi5150)


    Sydneyのアップデート後、ブログタイトルのフォントサイズが大きくなりました。

    ダッシュボード>カスタマイズ>フォント>個別投稿タイトルの大きさ
    の数値が反映されません。

    また、
    追加CSSや、子テーマのstyle.cssに下記を入力しても反映されません。
    .hentry .title-post {
    font-size: 20px;
    }

    親テーマのstyle.cssの1353行目の数値を変更しても反映されません。
    .hentry .title-post {
    font-size: 20px;
    line-height: normal;
    padding-bottom: 10px;
    margin: 0;
    }

    解決方法があれば教えてください。

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @aoi5150,

    Thank you for contacting us.

    I only speak English and your query in English Google Translate more/less is saying like this:

    Updated blog title font size

    After the Sydney update, the font size for blog titles has increased.

    Dashboard> Customize> Fonts> Individual Post Title Size
    The value of is not reflected.

    [CSS code]

    again,
    Even if you enter the following in the additional CSS or style.css of the child theme, it will not be reflected.

    Even if you change the value on line 1353 of style.css of the parent theme, it will not be reflected.

    [CSS code]

    Please let me know if there is a solution.

    Yes, the font size for single post page title has changed. You can control it with the below custom CSS code to add either into Additional CSS (under Customize menu) or child theme’s style.css file.

    @media only screen and (min-width: 992px) {
      .single .entry-header .entry-title {
        font-size: 20px;
      }  
    }
    
    @media only screen and (min-width: 576px) and (max-width: 991px) {
      .single .entry-header .entry-title {
        font-size: 20px;
      }  
    }
    
    @media only screen and (max-width: 575px) {
      .single .entry-header .entry-title {
        font-size: 20px;
      }  
    }

    You’re required to flush cache on your site each time additional code added since I saw the cache has been enabled with particular plugin or script on your server. Otherwise, your web browser will still load the cached pages and any changes/code addition won’t take any effect. In some cases, you may also need to clear your web browser’s cache/history and restart it.

    Hope this reply helps.

    Regards,
    Kharis

    Thread Starter aoi5150

    (@aoi5150)

    @kharisblank

    ご回答ありがとうございました。

    いただいたコードで解決しました。

    大変助かりましたm(_ _)m

    Hi @aoi5150,

    Thank you for getting back along with this (English Google Translate version of your reply):

    Thank you for your answer.

    I solved it with the code I received.

    It was very helpful m (_ _) m

    You’re welcome! Glad that code helped.

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘アップデート後のブログタイトルのフォントサイズ’ is closed to new replies.