By Asif A.K. on Thursday, 26 November 2015
Posted in General Issues
Likes 0
Views 740
Votes 0
I want to change the Font Size of the Title of the Latest Blogs Module. I tried using Web Developer Tools / Inspector in FireFox Mozilla but have no clue where is CSS file and where to change. Kindly help.
Great. It works. Thanks
·
Thursday, 03 December 2015 21:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Asif,

Ideally, you should not be making any changes on the modules css file but instead, you should add this in your template's custom css file. Most template providers would check for a custom css file in /templates/[YOUR_JOOMLA_TEMPLATE/css/custom.css

If the file doesn't exist, create this file and insert your css codes here
·
Friday, 27 November 2015 00:13
·
0 Likes
·
0 Votes
·
0 Comments
·
I know change has to be made in css file. I know about Template css file and its location. But I am not a programmer. Can you write few lines for me what to add in css file.
·
Tuesday, 01 December 2015 18:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Asif,

Css codes below is change the font size for latest blogs module.

#fd.eb.mod_easybloglatestblogs .eb-mod-title {
font-size: 24px;
}
·
Thursday, 03 December 2015 10:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Where to inset this code. In the the template.css ??
shall I insert this code as it is you have written in the template.css ??
·
Thursday, 03 December 2015 19:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You can add it either in your custom.css or template.css as long the css file is located within your /templates/[your current templates]/css/ folder.

shall I insert this code as it is you have written in the template.css ??

If the code has already been added in template.css, you don't have to add it in custom.css. However it is advisable for your include the code inside your custom.css so it will be easier for you to manage it in the future.

Hope these help.
·
Thursday, 03 December 2015 19:54
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome.
·
Friday, 04 December 2015 11:06
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post