Hi,
For the pagination, edit the css (eg: template.css) and find this code:
.pagination ul li {
display: inline;
margin: 0 5px;
text-align: center;
}
add some styling as this:
.pagination ul li {
background: none repeat scroll 0 0 transparent;
display: inline;
float: none;
margin: 0 5px 0 0;
padding: 3px;
text-align: center;
}
The logo: you replaced the new logo with larger size, so need change it size declare (layout.css) like this:
.mega_logo a.logobox {
background: url("../images/logo.png") no-repeat scroll 0 0 transparent;
display: block;
height: 109px; /* this is new height */
width: 209px; /* this is new width*/
}
Thanks