Hello, i am fairly new to all of this and cannot seem to find out how to change the text size for "View as Slideshow" as well as the "Previous" and Next" links. I have been over gallery.css a bunch of times and cannot find it in there. And after trying to manually do it in gallery.php the whole page goes blank when i refresh.
Any help on where to find these settings would be great. Thanks!!
First, open gallery.css and add the following code: a.slideshowlink { font-size: 24px; /* or whatever size you want */ }
Second, go to gallery.php and look for this line (around 666): $ss_tag = "<td><a href="$ss_url">View as Slideshow</a></td>";
Replace that with: $ss_tag = "<td><a href="$ss_url" class="slideshowlink">View as Slideshow</a></td>";
Assuming you want the same font size with your previous/next links, look for these lines (around 179): if ($current_picture > 0) { $prev_link = '<a accesskey="," href="'.generate_url("picture",$image_list[$current_picture-1]).'">« Previous</a>'; };
As a caveat, I just set my plogger up and haven't uploaded enough pictures to get the Previous/Next links to show up yet, but I imagine it should work. If you want different sizes, you can create a "a.previousnextlinks" class in your style sheet and replace accordingly.
Ok, i tried what you said, but after the editing, whenever i try to load my index everything comes up blank and i am stuck sitting in front of a white page.
I am guessing it may have something to do with syntax, but i dont know where or what. I don't know how to add classes...if i am forgetting a step.
this doesn't work for me; when i make the changes the album will not load and when i change back it does. If I change anything other than what the link refers to (i.e. View as Slideshow") the gallery will not load.