
11-19-2013, 01:09 PM
|
 |
Ecwid Team
|
|
Join Date: Feb 2010
Location: Ecwid headquarter
Posts: 5,876
|
|
Quote:
Originally Posted by Marcus Nardizzi
My solution was to hide it on all pages except the account page.
table.ecwid-productBrowser-auth-mini,
div.ecwid-ProductBrowser-auth-anonim{
display: none;
}
div.ecwid-productBrowser-AccountSettingsPage table.ecwid-productBrowser-auth-mini {
display: inline;
}
I wanted to remove the "Account" link but it has the same class as the "Sign Out" link. 
|
Hello,
Please, try to use following code to hide "Your account" button on the Account page:
Code:
div.ecwid-productBrowser-AccountSettingsPage table.ecwid-productBrowser-auth-mini div.ecwid-ProductBrowser-auth-logged span a:nth-child(2) {
display: none !important;
}
Note, that nth-child pseudo class is not working in IE8 and earlier versions.
__________________
Maya N., Ecwid Team
------------------
Welcome to our new Help Center!
|