View Single Post
10-10-2005, 09:07 AM
#17
jamesyfx is offline jamesyfx
Status: Member
Join date: Jan 2005
Location: Manchester
Expertise: Design
Software: TextEdit
 
Posts: 1,009
iTrader: 0 / 0%
 

jamesyfx is on a distinguished road

Send a message via MSN to jamesyfx

  Old

I was looking at your CSS. You could streamline that. >>>

e.g.
Code:
h1
{
margin-bottom: 0pt;
border-style: dashed;
border-color: #000000;
border-width: 1px;
background-color: #FFFFFF;
font-family: garamond;
font-size: 20pt;
color: #00628b;
}
Could be narrowed down to
Code:
h1
{
margin-bottom: 0pt;
border: 1px dashed #000;
background: #fff;
font: 20pt garamond;
color: #00628b;
}


Iuno. Try playing around a bit more.