• I’m trying to change the size of the copyright text at the bottom of my blog pages. Here’s the URL: https://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?

Viewing 1 replies (of 1 total)
  • 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;

Viewing 1 replies (of 1 total)
  • The topic ‘Changing the size of copyright text on bottom of page?’ is closed to new replies.