Tagged: , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #789403

    Hallo,

    ich bin auf der Suche nach einer Möglichkeit, die Schriftgröße der Blog-Item Überschriften auf der Blog Übersichtsseite (https://der-anderswald.de/blog/) zu verändern, ohne dass generell H3 überall geändert wird.

    <h3 class=”av-masonry-entry-title entry-title” itemprop=”headline”>Lesung in Köln am 26. Mai 2017</h3>

    Wie kann ich das per Quick CSS realisieren?

    Vielen Dank!

    #789448

    Hey Maaster,

    If you need to change it in just that page, please use this code:

    .page-id-259 h3.entry-title { font-size: 20px !important; }

    And adjust the value as needed.

    Best regards,
    Sarah

    #789520

    Thanks for the quick reply, but will this work for the subpages of the blog overview pages as well? (https://der-anderswald.de/blog/page/2/)

    Or can we change the ”av-masonry-entry-title entry-title” or entry-title globally for all blog pages?

    Thanks

    #789540

    Hi,

    Yes! :) This is essentially the same page, it’s just paginated.

    To verify, you can view the source of the page (right click, “View Source”, depending on your browser), and you can see the unique class in the body tag. For your blog overview page, the body tag looks like this:

    <body id="top" class="page-template-default page page-id-259 stretched caveat open_sans  cookies-not-accepted" itemscope="itemscope" itemtype="https://schema.org/WebPage">

    You will notice that all subpages of your blog overview has the same assigned class, page-id-259.

    In case you need to apply the CSS to other pages, you can just get their class! :D

    I hope that’s clear and helpful. Please do let us know if you need further assistance.

    Best regards,
    Sarah

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.