I'm trying to change font size in the top menu and article link headers (i.e. in category archives). Couldn't find it in CSS, changing in General Configuration Parameters doesn't work either.
Thanks in advance!
AS Templates
POSTED: 2018-03-20
Hello JAKUBGANKO,
What is your website url please?
Regards, AS Team.
jakubganko
POSTED: 2018-03-21
http://ibrkk.pl/
AS Templates
POSTED: 2018-03-21
Hello JAKUBGANKO,
The menu font size you can change here (line 47):
'/templates/as002048free/css/ext.superfishmenu.css'
ul.sf-menu > li > a,
ul.sf-menu > li > span
{
font-size: 14px;
line-height: 20px;
color: #464646;
display: block;
margin: 0 15px;
padding: 15px 0 5px;
font-weight: 500;
}
The headings can be changed here (line 1847):
'/templates/as002048/css/tmpl.default.css'
You can easy determinate the file which should be changed and the css class by installing and using Firefox Web Development tools
https://developer.mozilla.org/son/docs/Tools or Firebug Lite for Google Chrome https://getfirebug.com/releases/lite/chrome/
Here you can find some info of using firebug tool:
http://blog.astemplates.com/firebug-tutorial/#more-402
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
I'm trying to change font size in the top menu and article link headers (i.e. in category archives). Couldn't find it in CSS, changing in General Configuration Parameters doesn't work either.
Thanks in advance!
What is your website url please?
Regards, AS Team.
The menu font size you can change here (line 47):
'/templates/as002048free/css/ext.superfishmenu.css'
ul.sf-menu > li > a,
ul.sf-menu > li > span
{
font-size: 14px;
line-height: 20px;
color: #464646;
display: block;
margin: 0 15px;
padding: 15px 0 5px;
font-weight: 500;
}
The headings can be changed here (line 1847):
'/templates/as002048/css/tmpl.default.css'
.page-blog p.item_title
{
line-height: 36px;
font-size: 26px;
letter-spacing: -1px;
font-weight: normal;
}
You can easy determinate the file which should be changed and the css class by installing and using Firefox Web Development tools
https://developer.mozilla.org/son/docs/Tools or Firebug Lite for Google Chrome https://getfirebug.com/releases/lite/chrome/
Here you can find some info of using firebug tool:
http://blog.astemplates.com/firebug-tutorial/#more-402
Regards, AS Team.