• Hello! I have added the following css to align left the titles in pages, but on the blog overview page it moves on the far left side. Any ideas how to fix this? Thanks in advance!

    h1,h2,h3,h4,h5 {
        display: inline;
        margin-left: auto;
        margin-right: auto;
    }

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • The code is not really suitable for your goal. How far to the left should the heading be? Currently it is on a vertical left line with the text in the page – only the image is wider.

    Thread Starter browthes

    (@browthes)

    Thanks for your quick response. The heading should be at the level with the NEWS Headline. Is there a better solution if it’s not really suitable. The theme puts the h1 h2 … headlines almost in the middle of the page.

    Remove your addition and use this code:

    .entry-title.default-max-width {
     max-width: var(--responsive--alignwide-width);
    }
    Thread Starter browthes

    (@browthes)

    Thanks for your help.

    This works fine, but i would like to align left the h1, h2, h3 headlines

    This makes it a little more complicated because the headings are in the body text. Try this:

    .entry-title.default-max-width, [class*="inner-container"] > h2, [class*="inner-container"] > h3, [class*="inner-container"] > h4, [class*="inner-container"] > h5, [class*="inner-container"] > h6 {
     max-width: var(--responsive--alignwide-width) !important;
    }
    Thread Starter browthes

    (@browthes)

    Works perfectly! Thank you very much!

    Nice if I could help. You are welcome to set the topic to solved.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Blog Page Entry Title’ is closed to new replies.