Hi,

I have some questions regarding the customization of the user interface:

1. I set the slideshow as default view, when clicking on a photo album. Under the slideshow are the links "Album view" and "Slideshow", which I found in the photos.module file (lines 550 and 559). I didn't find them in any of the .tpl-files. How can I remove the links without to hack the module.file?

2. At the top of the slideshow are the information like file name, album name, creation date. How to configure/remove and style (the fontcolor etc.) of the respective information? As you can see in the attached picture, the information are not really readable. :(

Thanks a lot in advance for your help.

Regards,
Stefan

CommentFileSizeAuthor
photos-module.jpg62.44 KBdesign.er

Comments

eastcn’s picture

1, You are right, is there (photos.module lines 550 and 559).

/*

    if(variable_get('photos_slide', 0)){
  	  $links['photos_slide'] = array(
  	    'title' => t('Slideshow'),
  	    'href' => "photos/$type/$node->nid/slide",
  	  );
    }
*/

2, It depends on dfgallery, appears to be necessary. However, you can configure it.

//photos.data.inc lines 29 -32.
//photos.data.inc lines 95 -98
      'title' => $images['filename'],
      'timestamp' => $images['timestamp'],
      'thumbnail' => _photos_l($images['thumb'][$thumb]),
      'image' => _photos_l($images['thumb'][$view])

design.er’s picture

Great, it works! Thank you very much! :)

I think I can change the overlay/opacity of the skin in the respective PNG file (in the "skin" folder) of the dfgallery.module, right?
The only thing I really can't find is where to change the font color of the album information from my second question -> it's too dark, as you can see in the picture I attached to my first post. It would be great if I could change this value.

Again thanks a lot for your help! :)

Macronomicus’s picture

Apparently thats being set inside the FLA which we dont get .. only the swf. If we could get the FLA we could really customize this thing. Perhaps some flashvars can be setup for editing just such a thing as the text color n such.

I dont see any actionscript files in their package ... so its all probably in the swf unfortunately.

nathaniel’s picture

Issue summary: View changes
Status: Active » Closed (fixed)
Issue tags: -slideshow, -photos, -album view, -style, -font color