• Resolved samanthajaades

    (@samanthajaades)


    Hi! Is there a way so I can have no front page? I know I can change it to a static one, but it will still display the title, and a blank space for the empty content.

    I’m looking to have my homepage to be completely blank (page-wise) and just have the nav bar, image and footer. Users can use the nav bar at the top to get around.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Styled Themes

    (@gejay)

    In the current scenario of what i’ve seen there, hide that element using the following CSS :

    #post-23 { display:none; }

    Use either child theme or plugin like simple custom css : https://wordpress.org/plugins/simple-custom-css/

    And if you add another widgets make sure they are hidden from front page using plugin like : https://wordpress.org/plugins/display-widgets/

    Thread Starter samanthajaades

    (@samanthajaades)

    Perfect! That did the trick.

    Instead of making another board for it, how do I change the colour of the h1 entry-title ::after? I’ve tried numerous things in my child css, but won’t seem to change it. I’m probably missing something simple. 🙂

    Theme Author Styled Themes

    (@gejay)

    Background color can be changed here in style.css file :

    .type-page .entry-title::after {
    	content: "";
    	width: 20%;
    	height: 6px;
    	background-color: #789993;
    	display: block;
    	height: 6px;
    	margin: 10px 0;
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘No Front Page’ is closed to new replies.