NOTE: I did not add the responsive effect. You will take care about responsive effect. Sharing the basic steps here: Step 1: Enabling the Content Sidebar Layout option. Edit the functions.php file. Open the functions.php file on Notepad+ or navigate to Appearance > editor and click on functions.php link. Now modified the following codes: Current… Continue Reading
whitespace pro
Display pages instead of posts on Whitespace PRO Home page
Original Request: Hello, I’m experimenting with the Whitespace theme. http://my.studiopress.com/themes/whitespace/#demo-full I really like the way that the post excerpts display on the home page, but I would like to display page excerpts, not posts. Does anyone have any tips or advice on how to achieve this? Many thanks, Tim Option 1: add the following code… Continue Reading
Adding Responsive Slider on Home Page – Whitespace PRO Theme
Original Request: Is it possible to add a slider to the Whitspace theme homepage? Maybe where the stretch image is? I tried just placing the Genesis responsive slider widget in the Welcome widget area but that didn’t work. – RoxG I did following steps: Step 1: First install the Genesis Responsive Slider Plugin on your… Continue Reading
Displaying 3 Columns Teaser Boxes Below the Banner on Home Page of Whitespace PRO Theme
By default Home page have one widget area for Welcome Text. This article will show how to create a new widget area on home page and display the 3 columns teasers in that area. Step 1: Registering a new widget area “Home Top”. Add the following code in your functions.php file:
1 2 3 4 5 6 |
//* Register home top widget area genesis_register_sidebar( array( 'id' => 'home-top', 'name' => __( 'Home Top', 'whitespace' ), 'description' => __( 'This is the home top section will come below the banner image.', 'whitespace' ), ) ); |
Step 2: Navigate… Continue Reading