• Resolved adampuddicombe

    (@adampuddicombe)


    I’m looking to do the following and wondering if there’s a quick fix.

    1. Remove Page Title from certain pages (For ex. “Home”)

    2. For the homepage widgets, is it possible to align or center for two columns instead of three?

    3. Centering the text overlay on the slider.

Viewing 1 replies (of 1 total)
  • Hi @adampuddicombe,

    I hope you are well today and thank you for your questions.

    1. Remove Page Title from certain pages (For ex. “Home”)

    You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

    body.page-id-701 header.entry-header.page-header {
        display: none;
    }

    Change the page id 701 in the above CSS code with the page id where you want to hide the title.

    2. For the homepage widgets, is it possible to align or center for two columns instead of three?

    Could you please share the page URL from your site where you are displaying it so that i can help you to achieve it?

    3. Centering the text overlay on the slider.

    You can achieve this by using the following CSS code.

    .flex-caption .excerpt {
        margin: 0 auto;
    }
    .flex-caption {
        text-align: center;
    }

    Best Regards,
    Movin

Viewing 1 replies (of 1 total)

The topic ‘Few questions’ is closed to new replies.