Second Landing page

WordPress theme dedicated to start-up websites with amazing CSS3 animated icons, price tables and parallax effect background.
GK User
Wed Jul 02, 2014 3:14 am
I've used Simplicity to make a landing page, which contains a link to wordpress page (lets call it page 2) that I am trying to make look like another homepage.

So I have widgets for both pages, but some are set in widget rules to visible only on homepage, and some are set to the other page. So far so good.

Now, and I apologize for this being a stupid question (but I am a web dev noob), how do I get rid of this big vertical whitespace on page 2 that represents the page content (it's big even though I don't have any actual content entered on the page).

Or can I somehow override it with a Mainbody widget?

My other hack was to make a visual clone of a widget in the page content, but that doesn't work because your styles for pages don't allow me to mimic a widget exactly...or is there an easy way to do that?
User avatar
Fresh Boarder

GK User
Wed Jul 02, 2014 7:52 am
Hello,

I'll try to help you with that, but I need to see your website, could you provide an URL? (here or via PM).
User avatar
Moderator

GK User
Thu Jul 03, 2014 3:06 am
Piotr Kunicki wrote:Hello,

I'll try to help you with that, but I need to see your website, could you provide an URL? (here or via PM).


First page ("homepage"): http://synapticnulship.fatcow.com/glug/
Page 2: http://synapticnulship.fatcow.com/glug/?page_id=28

On page 2, you will notice a large vertical whitespace under the How it Works section. This is the main body of the page, which is actually completely empty. The problem is that it still takes up space and I don't know any easy CSS hack to fix that. Everything with content on page 2 is actually a widget.
User avatar
Fresh Boarder

GK User
Thu Jul 03, 2014 8:32 am
Hello,

This empty space is a place for your page/post content. On the homepage you can use widgets in the mainbody widget area, but on other pages you should use some content. If you don't want you can use this css to decrease this empty space:

Code: Select all
.page-id-28 #gk-mainbody > article {
   min-height: 0;
}

.page-id-28 .box.centered {
   padding-bottom: 0!important;
}


Add this code into Simplicity/css/override.css file. First enable this override option from Template Options -> Advanced tab.
User avatar
Moderator

GK User
Fri Jul 04, 2014 3:59 am
Thanks.
User avatar
Fresh Boarder


cron