Hello everyone.
Completely new to this wonderful photogallery,currently using it with my php-fussion site and,blows anything they have away.
One question, im wanting to change the colors of matrix theme , i've managed to change most of it but, the left side remains blue and on hover yellow. I want to change that to links e31313 and hover ffffff,i've edited everything in matrix css and,looked elsewhere but,just cannot get those links to change color,any help/suggestions appreciated.
also, i have the random photo instaled on my site as a panel, the thumb is a little large so is the text " Random Image" could i resize these????
oh,while i'm here, i love black thmes, are there other places to download/instal themes besides the standards given?
thanks again !!!
Posts: 804
This link has the list of User Created themes.
http://codex.gallery2.org/index.php/Gallery2:User_Contributions
As for the other question you change the link color in the theme.css. Maybe you missed it. It's a long file. I think the random photo uses the size of the thumbnail. You can change this under Edit Album for the root album.
Posts: 7
Hi thanks for the reply but,heres my code, i've looked at everything.
maybe you see something i do not?
Posts: 804
Can you post a link to your gallery? The Web Developer extension for Firefox makes finding things in CSS a lot easier.
Posts: 7
sure,although i havent a complete grasp on this yet.
http://sa3bin.com/gallery2/main.php
also, if you will notice, i have 2 albulms,wallpaper and drawings but, instead of 2 thumbs for the gallery's it shows a thumb linking to wallpaper, and photos outside of that. can they be seperated? no thumb for drawings.
thanks for the reply lvthunder !
Posts: 804
Change this part.
#gallery a { font-weight: bold; text-decoration: none; color: #e31313; } #gallery a:hover { text-decoration: underline; color: #00ff00; } #gallery a:active { text-decoration: none; color: #ffffff; }Posts: 7
sorry but,they still remain blue link. on hover, yellow.http://sa3bin.com/gallery2/main.php
: (
also, how would i go about making my banner link back to my main site?
or at the very least a text link?
Posts: 7
colors FIXED !
the path was gallery2/modules/colorpack/packs/black/color.css
could you still help out with my banner linking to my main site or a text link please?
Posts: 804
Oh I didn't realize that you were using a colorpack.
As for makeing a link copy /themes/matrix/template.tpl to /themes/matrix/templates/local/template.tpl
<div id="gsHeader"> <img src="{g->url href="images/banner.gif"}" width="169" height="48" alt=""/> </div>to
<div id="gsHeader"> <a href="http://sa3bin.com"><img src="{g->url href="images/banner.gif"}" width="169" height="48" alt=""/></a> </div>Posts: 7
worked out great,thanks alot !