Quote:
Originally Posted by Bulent Tekcan
Thanks so much Yılmaz...
I need to change style like that, I tried in AdminCP but not work. Any idea ?
Code:
<style>
body, li, td, div {
font: 18px verdana, arial, sans-serif;
word-wrap: break-word
}
li {
font-size: 14pt;
}
p.largefont {
font-size: 16pt;
}
</style>
Thanks so much again
|
You have to add !important for it to take effect.
Code:
<style>
body, li, td, div {
font: 18px verdana, arial, sans-serif !important;
word-wrap: break-word !important;
}
li {
font-size: 14pt !important;
}
p.largefont {
font-size: 16pt !important;
}
</style>