Forum Replies Created
-
AuthorPosts
-
February 5, 2017 at 1:00 pm in reply to: Column Classes stack right column on top of the left column on mobile #200595
Caroline Twist
MemberI'm realizing that maybe I didn't as the right question. Anyway, I wanted to follow-up that I found a solution through the suggestion from someone in another forum, in case it is helpful for others.
She said:
"You wound need to use Custom CSS.
Basically you would need to change the order of the HTML div containers, so that the one you want on top (in mobile) is coded first.
Then create CSS so that the two divs float:right; at 50%. On mobile change the div to float:none;"I used the Genesis Columns Advanced plugin which lets me use shortcodes in the visual page and post editor which makes it easier for me to keep track of things, but more importantly, it lets me apply CSS classes to column classes. So I named .one-half column class .responsive-align-right
Here's the HTML:
[one-half-first class="responsive-align-right"]
Content I want on the right in desktop, but on the top in mobile.
[/one-half-first]
[one-half class="responsive-align-right"]
Content I want on the left in desktop, but on the right in mobile.
[/one-half]
[clearfix]Here's the CSS:
.responsive-align-right{
float: right !important;}
@media only screen and (max-width:800px) {
.responsive-align-right {
width: 50% !important;}
}
@media only screen and (max-width:414px) {
.responsive-align-right {
width: 100% !important;
float: none !important;}
}February 4, 2017 at 4:14 pm in reply to: Column Classes stack right column on top of the left column on mobile #200576Caroline Twist
MemberOkay, thanks Victor!
Caroline Twist
MemberOkay, sorry. I wasn't sure if it was a plugin issue or a general Genesis issue.
Caroline Twist
MemberI'm trying to display blog posts with pagination on a Static Homepage using two different widgets areas. I want to be able to display different posts with different layouts.
I used the GENESIS FEATURED POSTS COMBO plugin to display one post, with a whole width column, without pagination.
Underneath that, I set another widget area with the GFPC plugin displaying six posts in a different layout (1/3 column class), and I set it to work with pagination.
All looks as intended on the home page, but when I navigate to page 2, the first widget area with the GFPC plugin content (one post, with a whole width column) is shown again. It is also displayed on all the consecutive pages.
It is like only the six posts in the second widget area are being refreshed when page 2 loads, but the first widget area remains untouched.
Is there a way to to set the GFPC plugin content in the first widget area to display only on the homepage?
I am using the Dynamik Website Builder Theme. I'm practicing on a subdomain: http://test.awholenewtwist.com. If I can get it figured out, I will deactivate, and reactivate Dynamic and GFPC plugin on my actual site.
Any help is greatly appreciated.
Caroline Twist
MemberI downloaded the premium plugin and it does the pagination, however when I navigate to page 2, the first widget is being shown again. It is also displayed on all the consecutive pages.
Any suggestions?
Caroline Twist
MemberI will try the widget you suggest, thanks for that! Do you know if there is a return policy if I can't get the pagination to work?
-
AuthorPosts