Hello All,
I want to change EZ page contet text font size, it's too small (http://heidimart.com//index.php?main_page=page&id=4). But after several hours research, I couldn't find the answer.
Is there anyone know?
Thanks
Hello All,
I want to change EZ page contet text font size, it's too small (http://heidimart.com//index.php?main_page=page&id=4). But after several hours research, I couldn't find the answer.
Is there anyone know?
Thanks
I guess it uses the standard font style in stylesheet.css
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 0.7em;
color: #795252;
background-color: #9B7969;
padding: 10px;
}
Around line 20 in your stylesheet
Hope it works
jcdk, thank you.
I tried your way, but all font size changed. I want to only change the EZ page content font size.
Is there any way?
Thanks
Then I think you should create a new div class for this page and link it to your stylesheet
<div class="example">
Your ez page information
</div>
And in your stylesheet
.example {
font-family: whatever
}