Home › Forums › Support › customizing right side bar This topic has 5 replies, 2 voices, and was last updated 3 years, 3 months ago by Fernando. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts January 11, 2023 at 12:10 am #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? January 11, 2023 at 1:04 am #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 January 11, 2023 at 5:13 pm #2492144 Jusung I have added it and it works now. Could you help with removing the search text box border on right sidebar? January 11, 2023 at 6:22 pm #2492184 Fernando Customer Support Can you try adding this?: .inside-right-sidebar input.wp-block-search__input { border:none; } January 11, 2023 at 7:53 pm #2492236 Jusung Thank you!! it works! January 11, 2023 at 8:22 pm #2492245 Fernando Customer Support You’re welcome, Jusung! Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In