• Resolved smartstreetpierogi

    (@smartstreetpierogi)


    Hello! I am trying to remove the “blog” area from underneath the text boxes at my website here: https://smartstreetpierogi.com/ Is there CSS code to insert to do so? It currently says, “Sorry, but you are looking for something that isn’t here.”

    Additionally, can you please provide the steps to centering the menu headers if using a layout width of 985px? I’ve applied the following code:

    .primary-menu {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    }

    however, it is still off centered as this is designed for 500px.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there smartstreetpierogi,

    Hope you’re well today!

    This should be possible with some custom CSS. Please try adding the following code to Appearance >> Theme Options >> Custom CSS:

    .home .entry-content {
    display: none;
    }

    This should remove that from your home page. As for centering navigation you can reduce the numeric value in width property since your navigation is 457px wide, please add this code:

    .primary-menu {
    width: 457px;
    margin-left: auto;
    margin-right: auto;
    }

    This will center it with more precision since it’s matching the width of your menu.

    Hope this helps ??

    Best regards,
    Bojan

    Thread Starter smartstreetpierogi

    (@smartstreetpierogi)

    Thank you!

    Btw if you had a transparent header image, it may look better.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing Blog’ is closed to new replies.