Recent Topics

1 Nov 22, 2014 17:05    

Hello -

I'm using the Photo Albums skin, and after searching the forums and the documentation, still have three questions:

1. On the popup modal for individual photos, how can I either remove or disable the "open in new window" link

2. How can I increase the size that the image is displayed in the modal beyond the actual image size?

3. On the main page, which shows thumbnails for each album, I have been able to change the page background color, menu bar, etc. However, I can't see how to change the post title color under the thumbnails. Currently the page background is white, and the titles for each post/album are light gray, making it impossible to read.

Thanks for any and all help in these questions.

2 Nov 24, 2014 13:09

1. In rsc/css/colorbox.css change
#cboxOpen{position:absolute; bottom:4px; left: 0; right: 0; margin: auto; width: 135px; line-height: 17px;}
to
#cboxOpen{display:none;}

3 Nov 25, 2014 23:42

Hi @billwill,

That's a nice solution due to there is no way to enable/disable that link. However, it is not recommended to modify core files, so you may add that rule in the skin's css file. In this case, go to skins/photoalbums/style.css and add this at the bottom:


#cboxOpen{ display:none !important; }
/* The !important is not that elegant, but it does the trick :D */

Regarding your second question, the colorbox modal is set to be displayed as maxWidth: "95%" and maxHeight: "90%", and the image is resized automatically to fit those proportions.

The third question could be also solved by adding some classes to the file style.css.


.posts_list a,
.posts_list a:visited,
.posts_list a:hover {
	color: #000; /* replace this by your preferred color */
}

Regards!


Form is loading...