Resizing the

Support Area Forums Bottega Resizing the

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question:
  • Author
    Posts
  • #15899
    Nasim Fekrat
    Participant

    How to resize the slide and menu photos on Bottega? Thanks

    #15902
    Bill Robbins
    Moderator

    Nasim,

    It is possible to change those sizes with some editing. Here’s what to do:

    1. Go to the Appearance section in your WordPress control panel and select Edit.
    2. From the list of files on your right, choose images.php and find this spot:
      
      add_image_size('header-image', 960, 350, true);
      

      The 960 here is the width and the 350 is the height in pixels of the slideshow images. I would suggest only changing the height for this image.

    3. Also look for this line:
      
      add_image_size('featured-thumbnail', 178, 178, true);
      

      which controls the size of the featured row. Once you’ve changed it to the size you’d like to have, then save your changes.

    4. Next go to the Theme Options page and select the Styling tab. Scroll down to the Custom CSS box and add this:
      
      .boxgrid { 
           width: 177px; 
           height: 178px;
      }
      		
      .boxcaption { 
           height: 178px; 
      }
      

      replace the width above with the new width of your featured row images and the height with the new height.

    5. Update your settings.

    Those changes will only affect new image uploads. If you’d like to change any images that have already been uploaded, you’ll need to use the Regenerate Thumbnails plugin.

    I hope that helps out. If you have any questions, just let me know,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Resizing the’ is closed to new replies.