Jump to content

How to remove phone from top right corner?


Recommended Posts

in your /themes/theme474/css/global.css file on line 405 you have this

#tmtextblock {
    position: absolute;
    top: 92px;
    right: 169px;
}

 

change it to

 

media all
#tmtextblock {
    display:none;

    position: absolute;
    top: 92px;
    right: 169px;
}

 

This will just hide the div.

If you remove the div altogether then it messes with your other divs.
I would remove it myself, but it seems you may have problems doing it, so the above should do you fine

Edited by MerseyRay (see edit history)
Link to comment
Share on other sites

in fact, even with display:none this text will be visible for bots, it's not good idea, because this number will be indexed

if i were you i will check modules section in back office for module named tm text block and if it exist - disable it.

Link to comment
Share on other sites

in fact, even with display:none this text will be visible for bots, it's not good idea, because this number will be indexed

if i were you i will check modules section in back office for module named tm text block and if it exist - disable it.

Thank you this worked wonderfully!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...