- Thank you received: 0
Font style of Article Title
-
max@flexsystem.com
-
Topic Author
- New Member
-
Less
More
11 years 3 months ago #35798
by max@flexsystem.com
Font style of Article Title was created by max@flexsystem.com
All articles the content I use Verdana, so I want to change the font style of article title from Arial to Verdana. Also want to change color and size. I have tried to amend template_css file, but fail when I do not know exact information to be inserted relevant to the car template.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 3 months ago #35806
by ivan.milic
Replied by ivan.milic on topic Font style of Article Title
In temaplte_css.css:
h1 {
font-size: 32px;
font-weight: normal;
margin: 20px 0;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
text-transform: uppercase;
padding: 10px 0 0 0;
}
h2 {
font-size: 24px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
line-height: 28px;
margin: 0;
padding: 25px 0 5px 0;
border-bottom: 1px dotted #c0c0c0;
}
change font-size and font-family properties.
You can also simply add
color:#FF0000!important;
property to change color to in example red. Headers colors can be changed in template options but if you set pre-defined style that properties have no effect. You need to edit style file in that case:
<template folder>/styles/styleX.php where X is number of pre-defined style.
h1 {
font-size: 32px;
font-weight: normal;
margin: 20px 0;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
text-transform: uppercase;
padding: 10px 0 0 0;
}
h2 {
font-size: 24px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
line-height: 28px;
margin: 0;
padding: 25px 0 5px 0;
border-bottom: 1px dotted #c0c0c0;
}
change font-size and font-family properties.
You can also simply add
color:#FF0000!important;
property to change color to in example red. Headers colors can be changed in template options but if you set pre-defined style that properties have no effect. You need to edit style file in that case:
<template folder>/styles/styleX.php where X is number of pre-defined style.
Please Log in to join the conversation.
Time to create page: 0.146 seconds