- This topic has 1 reply, 2 voices, and was last updated 4 years, 3 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Get rid of Account Login’ is closed to new replies.
Tagged: account, add to cart, login, lorina, woocommerce, wordpress
Hi, I’m working on a website and cannot figure out two things. I am hoping someone can help me. The website is a shop page (but not really for buying anything; more for ordering samples at no cost and catalogue) and uses the Lorina Theme. The website (published for now) is http://www.e.yoma.com.
How do I get rid of the account login icon in the header? I saw a previous post on this forum with adding CSS:
“.top-login { display: none; }”
But I don’t know where to add this CSS in the CSS section. Is it in header? Where does it fit in the text box? If this is not the answer, can someone help me figure this out? Our visitors do not need an account and we do not want them to have it.
You should add the CSS code to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. Simply add it to the box in the ‘Additional CSS’ section of the customizer.
The CSS you mentioned is for a different theme so will not work with this theme, the correct CSS should be this:
#masthead .top-account {
display: none;
}