Kavin Israel
Kavin Israel

Reputation: 105

Wordpress logo not displaying on only on chrome desktop

even after updating the code below, Logo still not showing on desktop.

.pro_logo a {
    display: inline-block;
    width: 100px;
}
  1. Website=> trinitech.in
  2. Logo => trinitech.in/wp-content/uploads/2021/03/Trinitech_Blue_V1.svg
  3. No logo Issue in mobile. But In my android mobile, when I switch to Desktop Site, again the logo disappears.

Thanks in advance.

Upvotes: 0

Views: 298

Answers (2)

Maneth Pathirana
Maneth Pathirana

Reputation: 41

try to add this

.pro_logo a {
    display: inline-block;
    width: 100px;
    height :auto;
    position:relative;
}

Upvotes: 1

nad
nad

Reputation: 1100

Set the width of the parent (anchor tag) to 100%

.header__titles a 
{ 
    width: 100%;
}

Upvotes: 1

Related Questions