Hello
i try to make another photo size in outline. I was tried a lot combination but without result. can anyone help?
Hello i try to make another photo size in outline. I was tried a lot combination but without result. can anyone help? |
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! |
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) |
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 |
The outline uses the browse unit image size as set in modules/index.php?r=photos/administration/settings https://www.deanbassett.com |