Forum Replies Created
-
AuthorPosts
-
Satwinder Rathore
ParticipantYou can add the
overflow:hidden
style to container class.site-container-wrap
.
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
ParticipantJanuary 6, 2018 at 5:48 pm in reply to: How Can I Find the Name of the Theme Wrapper? (for WooCommerce integration) #215159Satwinder Rathore
ParticipantInstall the Genesis Connect for WooCommerce plugin
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
Participantfunction customize_blogroll( $query ) { if ( $query->is_home && $_GET['show'] == 'popular' ) { $popular_posts = array(10, 4, 7, 3, 2, 6, 5, 1, 9, 8); $query->set( 'post__in', $popular_posts ); $query->set( 'orderby', 'post__in' ); return $query; { } add_action( 'pre_get_posts', 'customize_blogroll' );
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
Participantyou should also create a width CSS rule for the
.site-inner
and remove the.full-width-content
or try.landing-page.full-width-content
both classes without spaces
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
Participantif you want to sort the posts according to the
array
Try this$query->set( 'orderby', 'post__in' );
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
ParticipantPlease make sure you do not have the duplicate code.
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
ParticipantDecember 19, 2017 at 1:59 pm in reply to: Cafe-Pro Question Regarding Site Title and Tagline #214688Satwinder Rathore
ParticipantUse
screen-reader-text
css class to hide the site title and description. It will hide only the text.
Satwinder Rathore
https://satwinderrathore.wordpress.comSatwinder Rathore
ParticipantHi,
Add this CSS code to customizer.
.home-bottom .widget { float: left; text-align: center; width: 33%; } @media(max-width:680px) { .home-bottom .widget { width: 100%; } }
Satwinder Rathore
https://satwinderrathore.wordpress.comDecember 14, 2017 at 12:07 pm in reply to: How to Increase font size on mobile devices Atmosphere Pro #214560Satwinder Rathore
Participantyou need to change the font inside the css media queries too.
Satwinder Rathore
https://satwinderrathore.wordpress.comDecember 14, 2017 at 12:03 pm in reply to: Divine Theme – removing Previous and Next post links #214559Satwinder Rathore
ParticipantYou can add this
.adjacent-entry-pagination {display:none;}
to your css code. It will hide the links.
Satwinder Rathore
https://satwinderrathore.wordpress.comDecember 13, 2017 at 5:30 pm in reply to: How to Increase font size on mobile devices Atmosphere Pro #214536Satwinder Rathore
ParticipantCould you please let me know, which specific text you are referring to?
Satwinder Rathore
https://satwinderrathore.wordpress.comDecember 13, 2017 at 5:14 pm in reply to: Divine Theme – removing Previous and Next post links #214535Satwinder Rathore
Participantcould you please share the page link where you want to remove the links?
Satwinder Rathore
https://satwinderrathore.wordpress.comDecember 13, 2017 at 4:32 pm in reply to: Divine Theme – removing Previous and Next post links #214532Satwinder Rathore
ParticipantYou can hide the links by using
display:none;
into your CSS code.
Satwinder Rathore
https://satwinderrathore.wordpress.comDecember 13, 2017 at 4:27 pm in reply to: Responsive header-image: Decrease space above & below #214531Satwinder Rathore
ParticipantThe gap is appearing due the given height of the logo, use padding instead of height.
Satwinder Rathore
https://satwinderrathore.wordpress.com -
AuthorPosts