- 1). Open a Web browser, and go to your blog's login page. Type your username and password, then click the "Sign in" or "Log in" button.
- 2). Locate the HTML file with the footer. In Blogger, click "Edit HTML" under the "Design" tab. In WordPress, click "Editor" under "Appearance" on the left-hand "Dashboard" menu.
- 3). Scroll to the "footer" section. You will see either "<footer>" and "</footer>" in HTML. You will see ".footer" or "#footer" in CSS. It looks like this:
<footer></footer>
.footer {
#footer { - 4). Add the "width:" and "height:" coding within the "footer" tags. It looks like this:
#footer {
width: Xpx;
height: Xpx;
}
Replace "X" with the width and height that you want for the footer. - 5). Save the coding, and view the blog.
SHARE