- Posts: 25
- Thank you received: 0
Change the colour of the header and the size
-
Birgit78
Inactive member - Topic Author
- Member
Less
More
12 years 5 months ago #20245
by Birgit78
Change the colour of the header and the size was created by Birgit78
Hello,
I would like to change the colour of the header and make it smaller (the large red letter).
I will attach a file for you to see. I already changed the colour of the navigation on the left site and would need to change the big letter as well.
I can not find it in the template parameters.
Many thanks and kind regards,
Birgit
I would like to change the colour of the header and make it smaller (the large red letter).
I will attach a file for you to see. I already changed the colour of the navigation on the left site and would need to change the big letter as well.
I can not find it in the template parameters.
Many thanks and kind regards,
Birgit
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 5 months ago #20256
by ivan.milic
Replied by ivan.milic on topic Change the colour of the header and the size
template_css.css:
h2 {
font-size: 24px;
font-weight: 700;
padding: 3px 0 20px 0;
margin: 0;
text-decoration: none;
line-height: 24px;
}
h2 {
font-size: 24px;
font-weight: 700;
padding: 3px 0 20px 0;
margin: 0;
text-decoration: none;
line-height: 24px;
}
Please Log in to join the conversation.
-
Birgit78
Inactive member - Topic Author
- Member
Less
More
- Posts: 25
- Thank you received: 0
12 years 5 months ago #20273
by Birgit78
Replied by Birgit78 on topic Change the colour of the header and the size
Hello,
thank you, I will try this, but where do I add the new colour code?
Kind regards,
Birgit
thank you, I will try this, but where do I add the new colour code?
Kind regards,
Birgit
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 5 months ago #20283
by ivan.milic
Replied by ivan.milic on topic Change the colour of the header and the size
css code for first letter color is in template_css.php
a:link, a:visited, h2:first-letter {
color:<?php echoa:link, a:visited, h2:first-letter {
color:<?php echo $linksColor; ?>;
}; ?>;
}
to remove coloring of first letter modify it like this:
a:link, a:visited {
color:<?php echo $linksColor; ?>;
}
you can control this value from template parameters id you are using custom style , if you are using predefined style then you can edit value of $linksColor variable in styles/styleX.php , but it also affects links color.
for color code of other letters:
h2 {
color:<?php echo $headingText;?>;
}
also ther is template parameter for this and all stands for this as for first letter variable
a:link, a:visited, h2:first-letter {
color:<?php echoa:link, a:visited, h2:first-letter {
color:<?php echo $linksColor; ?>;
}; ?>;
}
to remove coloring of first letter modify it like this:
a:link, a:visited {
color:<?php echo $linksColor; ?>;
}
you can control this value from template parameters id you are using custom style , if you are using predefined style then you can edit value of $linksColor variable in styles/styleX.php , but it also affects links color.
for color code of other letters:
h2 {
color:<?php echo $headingText;?>;
}
also ther is template parameter for this and all stands for this as for first letter variable
Please Log in to join the conversation.
Time to create page: 0.241 seconds