• I would like to ask how can i change the size of the title of the article or of the page(probably h1)?
    I have tried to change the h1 size but nothing!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,
    First of all – create your own child theme for Duena and use it for all customizations, because your changes will be lost when the theme is updated, if you modified theme files.
    Then use Chrome’s or Mozilla’s firebug to find element you need and rewrite it’s styles in child theme.
    For example, with Firebug we can find, that title of the article, it’s <h1 class=”post-title”>, so we add to child theme’s style.css:

    .post-title {
       font-size:20px;
    }

    With this method you can edit almost all CSS.

    Thread Starter despina.mina

    (@despinamina)

    i want to change the <h1 class=”entry-title”>,
    but i can’t find a font size for this at the style.css so as to change him.Thank you

    Add to CSS in your child theme

    h1.entry-title {
       font-size: what you need
    }
    Thread Starter despina.mina

    (@despinamina)

    thank you so much!!!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘font size’ is closed to new replies.