By Dave Parker on Thursday, 31 July 2014
Posted in General Issues
Replies 3
Likes 0
Views 578
Votes 0
Hi...
How do we change the font size in ES? Is this controlled by our choice of Joomla template, or is the font size encoded in ES's CSS files?
Dave
Hello Dave,

The idea of css is to allow you to create custom overrides and you don't necessarily need to modify EasySocial's css file. You can just add the css overrides within your Joomla template's css file if you want.
·
Friday, 01 August 2014 15:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark...
Yeah, I thought that would be the case, but I'm not sure what CSS style(s) ES uses to control the various fonts. Is there a list somewhere?
Dave
·
Friday, 01 August 2014 15:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Dave,

You could just use selectors of html elements that you want to style. Just an example, if you want to style fonts within EasySocial for hyperlinks, you could do something like this,


/** Anchor link **/
#fd.es a {
font-size: 14px;
color: #000;
}


/** Anchor link on hover **/
#fd.es a:hover {
font-size: 18px;
color: #000;
}
·
Friday, 01 August 2014 16:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post