Archived topic
customizing right side bar
5 replies · Started by Jusung on January 11, 2023
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?
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
I have added it and it works now.
Could you help with removing the search text box border on right sidebar?
Can you try adding this?:
.inside-right-sidebar input.wp-block-search__input {
border:none;
}
Thank you!! it works!
You're welcome, Jusung!