I am facing an issue where my tab names are displaying too large and I would like them to be default size. I have placed the following script in the <head>
.
<style type="text/css">
{ font-family: Verdana; font-size:40%; }
label { width: 15em; float: left; }
label.error {display: none; float: none; color: red; padding-left: .5em; vertical-align: top; }
p { clear: both; }
.submit { margin-left: 12em; }
em { font-weight: bold; padding-right: 1em; vertical-align: top; }
</style>
<style type="text/css">
body
{
font-family:Times new roman, verdana;
font-size:22px;
width: 850px;
margin-left: auto;
margin-right: auto;
margin-top: 6px;
background-image:url("wood_texture2.jpg");
}
</style>
This setup applies the same size settings for everything inside the <body>
, but I want different sizes for each item within the body. What is causing this issue and how can I adjust sizes individually?