Chnage…
#branding img {
border-color: #FFFFFF;
}
#branding img {
border-color: #000000;
border-style: solid;
border-width: 3px 0 1px;
height: auto;
max-width: 100%;
width: auto;
}
Let’s say you want a blue border for some reason width 1px at the top and bottom…
#branding img {}
#branding img {
border-color: blue;
border-style: solid;
border-width: 1px 0 1px;
height: auto;
max-width: 100%;
width: auto;
}