Reputation: 105
even after updating the code below, Logo still not showing on desktop.
.pro_logo a {
display: inline-block;
width: 100px;
}
Thanks in advance.
Upvotes: 0
Views: 298
Reputation: 41
try to add this
.pro_logo a {
display: inline-block;
width: 100px;
height :auto;
position:relative;
}
Upvotes: 1
Reputation: 1100
Set the width of the parent (anchor tag) to 100%
.header__titles a
{
width: 100%;
}
Upvotes: 1