|
New Coder
Join Date: Jul 2011
Posts: 10
Thanks: 5
Thanked 0 Times in 0 Posts
|
okay,i see.
i notice in css this:
Code:
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {border: 0; font-family: inherit; font-size: 100%; font-style: inherit; font-weight: inherit; margin: 0; outline: 0; padding: 0; vertical-align: baseline; }
:focus {outline: 0;}
.corners {-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; border: 1px solid #eee; padding: 3px; }
a img {border: none;}
.box {width: 1000px; margin: 10px auto; display: block; clear:both; background: #fff; overflow: hidden; }
.nobg {background: none; }
.center {text-align: center; }
.right {float: right; margin: 10px 0px 5px 10px; }
.twothirds {width: 603px; float: left; margin-left: 10px; }
.third {width: 280px; margin-left: 0px; float: left; }
.homeformbg {background-image:url(images2/homeformbg.jpg); background-repeat:no-repeat; text-align: center; height: 337px; width: 367px; margin-left: 15px; float: right; margin-left: 15px; float: left; }
.homeformbg form{ }
.redbox {border: 1px solid #f00; }
body {font-family: Arial, Helvetica, sans-serif; }
.mainwrap {background-image:url(images2/bg1.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: fixed; overflow: hidden; }
/* header */
so i guess this line here:
Code:
body {font-family: Arial, Helvetica, sans-serif; }
must be changed to :
Code:
body {font-family: 'Gill Sans', Arial, Helvetica, Sans-serif;}
h1, h2, h3 {
font-family: 'Arial Black', Arial, Helvetica, Sans-serif;
font-weight: 900;
}
thanks
update: change but ,not doing anything,is still the same,with h1,h2,h3...
Last edited by nemtulea35; 10-11-2012 at 01:20 AM..
|