Ben Keeton
asked 10 years ago

I would like to have a larger logo on the site (www.medicalnews.md).  I put in the following code and uploaded the appropriate sized logo, but it is still showing up as small.
 
<script>
.site-header #header {
background: none;
}
#branding {
width: 500px !important;
}
.site-header #branding a {
width: 500px;
height: 80px;
}
</script>

1 Answers
DominicStaff
answered 10 years ago

To resolve this issue, you can do as the following:
1. Add the following code to the Header Code:

<style>
.site-header #branding a {
    background-size: auto;
    width: 100%;
}
</style>

2. Open the header.php file in the folder path “wp-content\themes\dw-focus”. Find the line 23
Replace the following code:

<div id="branding" class="span3 visible-desktop">

With new code:

<div id="branding" class="span6 visible-desktop">
Powered by DW Question & Answer Pro