Changing Font Size underneath Folders
Akapam
Registered Users Posts: 12 Big grins
Want to change the size of the font listed below my folder names (see picture)
I have done the following:
I opened up my site and went to Customize
All Folders
Theme
Clicked on Theme Wrench
Advanced
Custom CSS/Edit
Added
.sm-tile-info .sm-tile-title {font-size: 22px;}
Done
The text size did not change under the folder.
Any one have any ideas?
I have done the following:
I opened up my site and went to Customize
All Folders
Theme
Clicked on Theme Wrench
Advanced
Custom CSS/Edit
Added
.sm-tile-info .sm-tile-title {font-size: 22px;}
Done
The text size did not change under the folder.
Any one have any ideas?
0
Comments
.sm-tile-title {
font-size:20px!important;
}
In sitewide CSS works for me.
http://www.lyall-photos.net/
Have you tried adding "!important" so it overrides the default setting?
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
http://www.lyall-photos.net/
What does that mean :site wide" and where is it located?
That Worked!
Thanks
How would one go about changing the font style?
.sm-tile-info .sm-tile-title {
font-weight: bold;
font-style: italic;
font-size: 22px !important;
}
http://www.lyall-photos.net/
This is a little bit more difficult, depending on what font you want to use. If it's a normal font that all users have on their computer you can just use the normal CSS font code:
However, if you're trying to load a font that isn't 'normal' (most people don't have), you'll have to go a different route. Google Fonts is an initiative that makes it so browsers will automatically download a font and load it for the user. Using some nice code you can load any google you want and use it on your page. Unfortunately downloading additional Google fonts are blocked by SmugMug. I've been in talks with their developers to get them to change this and allow you to easily customize additional sections of the page with extra fonts.
There is a work-around though. I've outlined the 'hack' here: http://www.dgrin.com/showthread.php?p=1909714#post1909714. A couple posts below that (see post #16 there) discusses some additional instructions for doing it.
Basically you create some CSS code that forces the browser to download the font. You'll need to find out the Google URL for that font. Then use can use the font-family code (as above) anywhere on your site.
If you don't want to use a google font there are alternative ways in that thread as well. Good luck.
Former SmugMug Product Team
aaron AT aaronmphotography DOT com
Website: http://www.aaronmphotography.com
My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations