Title: Trouble centering CRP Shortcode
Last modified: April 29, 2024

---

# Trouble centering CRP Shortcode

 *  Resolved [pizzaboy913](https://wordpress.org/support/users/pizzaboy913/)
 * (@pizzaboy913)
 * [2 years ago](https://wordpress.org/support/topic/trouble-centering-crp-shortcode/)
 * I am trying to center the CRP shortcode output on some of our pages. I have tried
   CSS, a recommendation from another post, etc and it will not change from left
   justified.
 * Any thoughts from anyone would be appreciated. It is located about a quarter 
   of the way down the page.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftrouble-centering-crp-shortcode%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [pizzaboy913](https://wordpress.org/support/users/pizzaboy913/)
 * (@pizzaboy913)
 * [2 years ago](https://wordpress.org/support/topic/trouble-centering-crp-shortcode/#post-17721904)
 * I figured out a work around. I added a limit=”3″ instead of 2 and adjusted the
   thumbnail size to it utilized the most space so it appears center.
 * I would be curious on how to actually make it center if I decided to make it 
   a limit=”2″ thank you
 *  Plugin Author [Ajay](https://wordpress.org/support/users/ajay/)
 * (@ajay)
 * [2 years ago](https://wordpress.org/support/topic/trouble-centering-crp-shortcode/#post-17727028)
 * Given that you have cleanly set out the width and have it at 2, you could try
   this in the plugins Styles > Custom styles box or your theme’s CSS. This one 
   is forcing the width of the div to the width of the images and then setting the
   margin to be auto i.e. centered.
 *     ```wp-block-code
       .crp_related.crp-rounded-thumbs {
         width: 732px;
         margin: 0 auto;
       }
       ```
   
 *  Thread Starter [pizzaboy913](https://wordpress.org/support/users/pizzaboy913/)
 * (@pizzaboy913)
 * [2 years ago](https://wordpress.org/support/topic/trouble-centering-crp-shortcode/#post-17731467)
 * Thank you.
 *  [kengji](https://wordpress.org/support/users/kengji/)
 * (@kengji)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/trouble-centering-crp-shortcode/#post-18002402)
 * [@pizzaboy913](https://wordpress.org/support/users/pizzaboy913/) I’ve been looking
   for ways to make it centered many times, including in your thread. After I updated
   the new version I faced this issue as well. Today, I decided to ask ChatGPT again
   and this time it is working!
 *     ```wp-block-code
       /* Ensure the entire CRP container is centered */.crp_related.crp-rounded-thumbs {  display: flex;  justify-content: center; /* Centers the content horizontally */  flex-wrap: wrap; /* Allows items to wrap to the next line if necessary */  text-align: center;}/* Ensure the UL is centered and spans the available width */.crp_related.crp-rounded-thumbs ul {  list-style: none;  padding: 0;  margin: 0;  display: flex;  justify-content: center; /* Center the UL items horizontally */  flex-wrap: wrap; /* Allows for wrapping if items exceed the width */}/* Style the LI items to be centered and in a row */.crp_related.crp-rounded-thumbs li {  margin: 10px;  display: inline-block;  vertical-align: top;  text-align: center;}/* Ensure the A elements and content inside are centered */.crp_related.crp-rounded-thumbs a {  display: block;  text-align: center;}/* Style the images to be centered */.crp_related.crp-rounded-thumbs img.crp_thumb {  display: block;  margin: 0 auto;  max-width: 100%;  height: auto;  object-fit: cover;}/* Center figure elements */.crp_related.crp-rounded-thumbs figure {  margin: 0;  text-align: center;}
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Trouble centering CRP Shortcode’ is closed to new replies.

 * ![](https://ps.w.org/contextual-related-posts/assets/icon-256x256.png?rev=2985705)
 * [Contextual Related Posts](https://wordpress.org/plugins/contextual-related-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contextual-related-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contextual-related-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/contextual-related-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contextual-related-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contextual-related-posts/reviews/)

## Tags

 * [center align](https://wordpress.org/support/topic-tag/center-align/)
 * [CRP](https://wordpress.org/support/topic-tag/crp/)

 * 4 replies
 * 3 participants
 * Last reply from: [kengji](https://wordpress.org/support/users/kengji/)
 * Last activity: [1 year, 8 months ago](https://wordpress.org/support/topic/trouble-centering-crp-shortcode/#post-18002402)
 * Status: resolved