Community Forums › Forums › Archived Forums › Design Tips and Tricks › Featured Widget Amplified on Magazine Pro Help
Tagged: featured widget amplified, float, Magazine Pro, Width
- This topic has 8 replies, 2 voices, and was last updated 11 years, 10 months ago by
emasai.
-
AuthorPosts
-
December 22, 2013 at 4:00 pm #80814
BMW
MemberProblem URL: http://bit.ly/1icBHcN
Using the normal featured widget plugin, my design is how I want it. i.e.

However when I use the featured widget plugin, I see this:

It's apparently a css width or float issue, but I suck at CSS and I can't figure it out.
How can I get the normal featured widget styles to show when featured widget amplified is enabled?
Thanks in advance.
December 22, 2013 at 4:05 pm #80816emasai
ParticipantChanging your image to alignleft will make the text float to the right of the image. But I just reread your post and I guess that is not what you want to achieve. I will have another look.
Need Website Customization or a Responsive CSS fix? Contact Me
Lynne emasai.comDecember 22, 2013 at 4:32 pm #80822emasai
ParticipantI got them to move side by side by adding
.gfwa-odd {
width: 45%;
float: left;
}
.gfwa-even {
width: 45%;
float: right;
}
You might need to be a little more specific with the target as I applied it directly to the element.
Let me know if that works.
Need Website Customization or a Responsive CSS fix? Contact Me
Lynne emasai.comDecember 22, 2013 at 4:55 pm #80827BMW
MemberWorked like a charm. Thanks a million.
But like you said it applied it globally to all widgets on the home page.
I've tried:
.home-middle .featured-content .entry .gfwa-odd {
width: 50%;
float: left;
}
.home-middle .featured-content .entry .gfwa-even {
width: 50%;
float: right;
}But that doesn't seem to work.
Thanks!
December 22, 2013 at 5:14 pm #80829emasai
ParticipantAs I mentioned you need to target it more specifically, I used .ourproducts which seems to work.
.home-middle .ourproducts .gfwa-oddDo this for gfwa-even too
Having done this you will have to add these two tags into media queries at whichever break point starts looking bad and change the width to 100% and float: none.
Need Website Customization or a Responsive CSS fix? Contact Me
Lynne emasai.comDecember 22, 2013 at 5:25 pm #80831emasai
ParticipantAre you able to add a class to your featured widget amplified plugin? If so that would be the way to target the css rule.
Need Website Customization or a Responsive CSS fix? Contact Me
Lynne emasai.comDecember 22, 2013 at 5:44 pm #80834BMW
MemberI'm sure I could add a class, but I don't know specifically how. :/
I've added the .ourproducts to your previous code, but I'm still seeing full-width widgets. I've played around with width, but am struggling with my css.
Thanks again
December 27, 2013 at 10:35 am #81409BMW
MemberStill trying to figure this out. Thanks for any additional help.
December 27, 2013 at 2:30 pm #81458emasai
ParticipantTry this, go to your Great Kitchen Secrets post and scroll down to Layouts, you can add a Custom Post class. Call it "fullwidth" you can now style all the posts that have this class. Alternatively, you can add a class to your posts that you only want to display half-width.
Need Website Customization or a Responsive CSS fix? Contact Me
Lynne emasai.com -
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.