Change image size in outline

Hello

i try to make another photo size in outline. I was tried a lot combination but without result. can anyone help?

Quote · 1 Sep 2014

Did you use the search here?

Top right, the magnifier icon.

http://www.boonex.com/forums/topic/How-to-resize-outline-items-.htm

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 1 Sep 2014

I explain otherwise. For example in file: outline_item_image.html is code for display width and height image

<a href="__user_name__"><img class="wall-oii-image __mod_prefix__-wall-oii-image bx-def-round-corners bx-def-shadow" src="__item_icon__" title="__item_title__" width="__item_width__" height="__item_height__" /></a>

I know that PHP code for this is:

else if($aItem['status'] == 'approved' && $this->oAlbumPrivacy->check('album_view', $aItem['album_id'], $this->oModule->_iProfileId)) {

                if(!isset($aContent['idims'][$iId])) {

                    $sPath = isset($aItem['file_path']) && file_exists($aItem['file_path']) ? $aItem['file_path'] : $aItem['file'];

                    $aContent['idims'][$iId] = BxDolImageResize::instance()->getImageSize($sPath);

                    $bSave = true;

                }

               $aItem['dims'] = $aContent['idims'][$iId];

                $aItems[] = $aItem;

 

                $aTmplItems[] = array(

                    'mod_prefix' => $sPrefix,

                    'item_width' => $aItem['dims']['w'],

                    'item_height' => $aItem['dims']['h'],

 

But i can't find a value of $aItem['dims']['w'], and $aItem['dims']['h'].

In this moment all photo's in outline have a height: 140 but why?(i want height: 400px)

Quote · 1 Sep 2014

 

i want height: 400px

????  That is huge for a thumbnail.  You must be running one heck of a monitor resolution.

Geeks, making the world a better place
Quote · 2 Sep 2014

The outline uses the browse unit image size as set in modules/index.php?r=photos/administration/settings

Changing that will affect all blocks that use that image size.

Image sizes from those photo settings are created when a photo is uploaded.

You also cant change the height without also increasing the width. the 140px is just the max size. A portrait image will have a smaller width with a max height of 140 and the landscape image will have a smaller height with a max width of 140 per the settings in the photos module.

As there are no separate images settings for the outline and a separate pre-sized image for the outline you will not be able to accomplish it without separating all of that first. Then you would need to manually create images in the new size from all of the images that are available in a larger size. Once all that has been done, then you can proceed to adjust the module to use a different image set which also means you would have to modify the css for the width of the outline column blocks to accept the larger width that will result from having a larger height which at 400px will result in 2 columns instead of 4.

Anyhow, you have a lot of work that needs to be done with the photo module first to get the separate images you need for the outline before you can modify the outline to use them.

I am sure i just bursted your bubble. But presized images is how dolphin works. And it's going to be a lot of work to setup a new one just for the outline use.

https://www.deanbassett.com
Quote · 2 Sep 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.