Site logo

[Resolved] customizing right side bar

Home Forums Support [Resolved] customizing right side bar

Home Forums Support customizing right side bar

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2490960
    Jusung

    Hello. I am trying to customize the right side bar.

    on the right sidebar, I wanna add one recent post a line, but there are 3 on one line.
    Can you fix this?

    Also, on the right sidebar, on the search, there is text border. I wanna remove the text box border.

    Can you help with this?

    #2491005
    Fernando
    Customer Support

    Hi Jusung,

    Yes, we can help fix both of these issues.

    Let’s first tackle the first issue.

    Can you try adding this snippet?:

    add_filter( 'post_class', function( $classes ) {
    	if ( ! is_admin() && in_array( 'gb-query-loop-item', $classes ) ) {
    		$index = array_search('generate-columns',$classes);
    if($index !== FALSE){
        unset($classes[$index]);
    }
    		
    	}
    
    	return $classes;
    } );

    Adding PHP: https://docs.generatepress.com/article/adding-php/#code-snippets

    #2492144
    Jusung

    I have added it and it works now.

    Could you help with removing the search text box border on right sidebar?

    #2492184
    Fernando
    Customer Support

    Can you try adding this?:

    .inside-right-sidebar input.wp-block-search__input {
        border:none;
    }
    #2492236
    Jusung

    Thank you!! it works!

    #2492245
    Fernando
    Customer Support

    You’re welcome, Jusung!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.