addictivethoughts
Member
Posted 3 years ago #
I'm trying to change the size of the copyright text at the bottom of my blog pages. Here's the URL: http://www.addictivethoughts.com
It seems to be showing up by default at 12 px, but I want to change it to 10px bolded. I tried to edit the footer with font-size commands, but it didn't seem to work. Any ideas?
Look in style.css for ...
#footer {
background:url(img/header_footer.jpg) 0 -132px no-repeat;
display:block;
height:88px;
border-top:1px solid #CCC;
font-size:11px;
line-height:145%;
width:100%;
}
Adjust font-size:11px; to whatever you want. To make it bold add the following property to the block above ...
font-weight:bold;