Is there a way to increase the padding in a Colorbox modal window? I want some extra space between the edges of the modal window and the actual content. I experimented with the innerWidth
and innerHeight
properties, but unfortunately, I didn't notice any changes.
// Setting up inline content for Colorbox window
$(".inline").colorbox({
inline: true,
fixed: true,
height: "80%",
width: "80%",
innerWidth: "50%",
innerHeight: "50%"
});
Any suggestions on how to achieve this would be greatly appreciated!