简体   繁体   中英

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.

try to add this

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

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

.header__titles a 
{ 
    width: 100%;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM