![]() |
|
Adjusting Width - Effervescence+ Theme - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Adjusting Width - Effervescence+ Theme (/thread-5804.html) |
Adjusting Width - Effervescence+ Theme - VWPowered - 05-09-2009 hi, after overdoing it with the search button for the last few hours, i'm still none the wiser as to how i can make the gallery width wider so three columns stay three columns rather than go to 2 because a title is to long. most of the titles i cant really shorten as they are place names etc.. if you have a gander you'll see what i mean.. http://www.franco-oldtimers.com/zenphoto/Places/ can anyone shed light on how to make the columns wider or reducing test size, i'm a virgin when it comes to Zenphoto and look forward to using the software... thank you in advance Adjusting Width - Effervescence+ Theme - JHT - 05-09-2009 I am also a newby when it comes to changing things in ZenPhoto and not that familiar with style sheets, but I learned a few things in the past week tweaking Efferescence+ for my own use. I think I may have accidentally found what you are looking for. Look in the efferescence.css style sheet at the width setting on line 368. main {
Try changing the width setting and upload the changed css file to your site. Let me know if this works for you. Adjusting Width - Effervescence+ Theme - JHT - 06-09-2009 I experimented with changing the width property for #main in the efferescence.css sheet and it did not have the effect I expected. I guess we will just have to wait for the experts to respond. Adjusting Width - Effervescence+ Theme - sbillard - 06-09-2009 You would really have to describe what is not expected. But I suspect you did not change enough of the CSS. There are multiple divisions that would need to have their sizes changed compatibly for everything to look correct. Best way to approach this is to ask your browser to show you the HTML source. Then you can look at the HTML around the parts that are not right and at the CSS to see how these parts are styled. Adjusting Width - Effervescence+ Theme - JHT - 06-09-2009 Thanks again sbillard. In my case, it is the Octoberfest.css file that needs to be changed. I changed the '#main' and '#submain' width values to 840 in the Octoberfest.css style sheet and my gallery and album widths inceased. I know how to change the font size for the 'description' but not the 'Title' of the albums. You might search the CSS files for album title font settings. Adjusting Width - Effervescence+ Theme - JHT - 07-09-2009 You piqued my interest in understanding how the Title text was controlled as well as the width and number of columns. define('ALBUMCOLUMNS', 4); and gallery.php files Now for the Title text font size, " title=""> Likewise, sub Albums are titled using the in the Album.php file. " title=""> The font definition h4 is included in the stylesheet for the color scheme, in my case Oktoberfest.css. You can not just change the values used in the h4 definition since it is used many places. The best solution is to add a new definition to your color scheme css file and label it h5. Add this in the group labled / Gallery Titles --- / Now in your Gallery.php and Album.php files replace the & shown above with & . You can see the results in my gallery. You could modify the values 12px/18px in the h5 definition above to make the font even smaller but then it be too small to read by some visitors. Does this solve your problem? |