sjefx
Forum Replies Created
-
Forum: Plugins
In reply to: [Features by WooThemes] How Do I Center Align Features in page@dynamicoils: I did not really look at that, but is has to do with media queries. I used the widget shortly in the WOO One pager theme. Now the default design in that theme is for a small screen with features vertically aligned (width=100%). When the size is above 768px it changes to horizontal aligned features (width=29.8% with 3 features). When this is also the case in the theme you are using, it depends on where you paste the above CSS. The settings above should only overrule the CSS meant for a screensize of 768px and above.
Forum: Plugins
In reply to: [Features by WooThemes] How Do I Center Align Features in pageHi, these are the CSS elements I use in Woo Themes The One Pager Theme to display 3 features and 3 testimonials aligned on the homepage.
/* Features By WooThemes Widget */
.widget_woothemes_features .feature {
float: left;
width: 29.8%;
margin-right: 0;
margin-left: 5.3%;
}.widget_woothemes_features .feature.first {
margin-left: 0;
}/* Testimonials By WooThemes Widget */
.widget_woothemes_testimonials .quote {
float: left;
width: 29.8%;
margin-right: 5.3%;
}Forum: Plugins
In reply to: [Features by WooThemes] How Do I Center Align Features in pageHi Pelgen, I am busy with same thing with the same theme. I solved it with custom css in a child-theme I made for One Pager.