Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1334286

    Hi

    I cannot center subtitle below title.
    An example is this page, but is in all page with subtitles

    If i see on my notebook, seems that is all ok, but if i see of my phone isn’t center.
    Can you help me?

    Thank you

    #1334320

    Hey aluca6,

    Thank you for the inquiry.

    The title and the breadcrumb are not aligning correctly on mobile view because of this css code.

    .main-title.entry-title, #top .alternate_color.title_container .main-title a {
        left: 44% !important;
        margin-bottom: 60px !important;
        font-weight: 600 !important;
        font-size: 28px !important;
        color: #660000 !important;
    }
    
    .main-title.entry-title, #top .alternate_color.title_container .main-title a {
        left: 44% !important;
        margin-bottom: 60px !important;
        font-weight: 600 !important;
        font-size: 28px !important;
        color: #660000 !important;
    }
    
    .title_container .breadcrumb {
        left: 44% !important;
        padding: 0;
        background-color: #fff !important;
        font-family: 'Lato';
        font-style: italic;
    }
    

    The left property adjusts the position of the title. You may need to wrap the code inside a css media query so it doesn’t affect the mobile view.

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    }

    Best regards,
    Ismael

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