- Posts: 16
- Thank you received: 0
Increase default character size
-
nidirex
Inactive member - Topic Author
- New Member
Less
More
13 years 8 months ago #7670
by nidirex
Increase default character size was created by nidirex
Hi, thank you for yours answers. I need another suggestion: I can increase default character size without using aAA link in footer?
Thank you!
Thank you!
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 8 months ago #7701
by ivan.milic
Replied by ivan.milic on topic Re: Increase default character size
That component is increasing fonts in all text fields on page proportionally
You can enter
template_css.css,
layout.css
And manually increase font size everywhere you see font-size property.
Or you can (I do not recommend this) simulate click on page load. To do that add this to index.php of template or in some custom module:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".increaseFont").click();
});
</script>
You can enter
template_css.css,
layout.css
And manually increase font size everywhere you see font-size property.
Or you can (I do not recommend this) simulate click on page load. To do that add this to index.php of template or in some custom module:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".increaseFont").click();
});
</script>
Please Log in to join the conversation.
-
nidirex
Inactive member - Topic Author
- New Member
Less
More
- Posts: 16
- Thank you received: 0
13 years 7 months ago #7791
by nidirex
Replied by nidirex on topic Re: Increase default character size
I've increased all values of font-size:10px in template_css.css from 10 to 11, and only one of font-size:11px from 11 to 12 in layout.css
Is necessary that I modify fontResizefile.js in jf folder?
Is necessary that I modify fontResizefile.js in jf folder?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 7 months ago #7805
by ivan.milic
Replied by ivan.milic on topic Re: Increase default character size
No, it takes current values and adds them value, there are no fixed sizes defined there.
Please Log in to join the conversation.
-
larry
Inactive member - Member
Less
More
- Posts: 53
- Thank you received: 3
13 years 2 months ago #12055
by larry
Replied by larry on topic Re: Increase default character size
If I add
font-size: 12px;
to "body" in layout.css it increases the default size. Are there any contingent problems on doing that as a simpler way?
font-size: 12px;
to "body" in layout.css it increases the default size. Are there any contingent problems on doing that as a simpler way?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 2 months ago #12072
by ivan.milic
Replied by ivan.milic on topic Re: Increase default character size
you can do , that. Where font should have other size that is defined for that , so you will not have problems.
Please Log in to join the conversation.
Time to create page: 0.149 seconds