i can not remove the betheme logo

Hi
i have the betheme theme with the "Minimal" demo. 
i want my logo only in the sticky header but when i remove the logo from appearance, options, logo, the "betheme logo shows up. and i can see my own logo in the sticky header. i only want to see my own logo in the sticky header and no bethemelogo on the left corner,, how can i remove the betheme logo from the left corner.

thx for help 

Comments

  • Hi,

    please send us link to page where you would like to do this first because it requires css customization.
  • pixfront.se

    on the left corner you can see the betheme logo. need to remove it.
    thx
  • Ok, thanks. So to remove this logo, you need to use an extra css:
    #Top_bar:not(.is-sticky) .logo { display: none !important; }
  • Hi
    the logo is not showing eny more, but!!!

    when i visit the site with my iphone 6, i can not see the movie and when i zoom with my fingers on the phone screen the betheme logo shows of, werry strange acting when we visit the site from the phone.
    is it eny solution on that?

    otherwise is works good when i visit the site from my computer.

    regards
  • Please go to Theme options > Global > Logo section and upload 1px of empty image instead of logos that you do not use an everything should be fine.
  • ok so you mean i make a empty picture 1x1 pixel in photoshop and make it black color and upload the picture. "i did that" the problem is when the sticky noat comes down, a empty box shows in the left corner of sticky noat. how can i remove the box? i did not upload enthing in the sticky noat only for normal logo i upload 1pxl picture
    i only upload 1pxl picture for logo not for 

    when i remore all logos the "thebetheme" shows up as logo.

    when you enter the site, a movies shows up directly.
    and still the movie dont play  when i enter the site with iphone, why? it works with computer but not with phone.

    can we do enything about it?
  • 1. Ok, got it. From what we see, it behaves like that because of custom css:
    #Top_bar:not(.is-sticky) .logo {
        display: none !important;
    }
    which need to be replaced with the following css:
    @media only screen and (max-width: 1239px){
        #Top_bar .logo { display: none !important;}
    }
    2. About the videos, background videos are not supported by mobile devices and it's more technical problem of these devices itself.
  • Hello

    I have the same theme. How do I just hide the logo only on the home page and have it show on all the others?? I used the above custom css and it worked on removing it however it did it for all pages. Is there a way to just hide it on the home page and have it appear on the others??
  • Hi,
    use this css
    body.home .logo {display:none !important;}
Sign In or Register to comment.