skip to Main Content

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.

2

Answers


  1. try to add this

    .pro_logo a {
        display: inline-block;
        width: 100px;
        height :auto;
        position:relative;
    }
    
    Login or Signup to reply.
  2. Set the width of the parent (anchor tag) to 100%

    .header__titles a 
    { 
        width: 100%;
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search