Viewing 1 replies (of 1 total)
  • If the content area is a specific width, you can add ‘padding-right: 20px’ in your CSS, or any number of pixels to get some extra space. Make sure you adjust your width by subtracting the padding amount. So

    .content {
       width: 600px; /*current width*/
       padding-right: 20px /*add padding*/
    
       /* width - padding = 580px = width */
       width: 580px; /* your new width value */

Viewing 1 replies (of 1 total)
  • The topic ‘Question about how to shrink the main page?’ is closed to new replies.