1 billwill Nov 22, 2014 17:05
3 mgsolipa 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!
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;}