Title: Quick View Modal Box Width?
Last modified: December 28, 2023

---

# Quick View Modal Box Width?

 *  [devilmakq](https://wordpress.org/support/users/devilmakq/)
 * (@devilmakq)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/quick-view-modal-box-width/)
 * I cannot seem to find option to change the size of quick view box. I also want
   to add padding on all 4 sides to make it look cleaner. 
   Do I have to use CSS 
   or is there option in customizer?

Viewing 1 replies (of 1 total)

 *  [Shahin](https://wordpress.org/support/users/skalanter/)
 * (@skalanter)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/quick-view-modal-box-width/#post-17306968)
 * Hello [@devilmakq](https://wordpress.org/support/users/devilmakq/),
 * Yes, to achieve it, you need to write custom CSS. So, you can learn how to use
   Chrome Developer Tools or Firefox Developer Tools to help you see and test changes
   to your CSS:
    [https://developers.google.com/web/tools/chrome-devtools/](https://developers.google.com/web/tools/chrome-devtools/)
   [https://developer.mozilla.org/en-US/docs/Tools](https://developer.mozilla.org/en-US/docs/Tools)
 * **CSS Tutorial:** [https://www.w3schools.com/css/](https://www.w3schools.com/css/)
 * And for responsive sizes, put your CSS on custom screen size:
 *     ```
       @media only screen and (max-width: 480px) {
           /* put your custom CSS here*/
       }
       ```
   
 * Or use between sizes:
 *     ```
       @media (max-width: 960px) and (min-width: 481px){
           /* put your custom CSS here */
       }
       ```
   
 * For more information about media queries, please read this article:
    [https://www.w3schools.com/css/css_rwd_mediaqueries.asp](https://www.w3schools.com/css/css_rwd_mediaqueries.asp)
 * **Example:**
 *     ```
       .owp-qv-content-inner {
           max-width: 960px;
           padding: 30px;
           border-radius: 6px;
           overflow: hidden;
       }
       ```
   
 * I hope it helps.
    Best Regards

Viewing 1 replies (of 1 total)

The topic ‘Quick View Modal Box Width?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/oceanwp/4.1.6/screenshot.png)
 * OceanWP
 * [Support Threads](https://wordpress.org/support/theme/oceanwp/)
 * [Active Topics](https://wordpress.org/support/theme/oceanwp/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/oceanwp/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/oceanwp/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shahin](https://wordpress.org/support/users/skalanter/)
 * Last activity: [2 years, 5 months ago](https://wordpress.org/support/topic/quick-view-modal-box-width/#post-17306968)
 * Status: not resolved