Description
Если вы, по какой то причине не используете Logo, то данный пример показывает, как с мощью CSS скрыть название сайта из логотипа.
Для того, что бы избавится от названия сайта, добавьте в Custom.css следующий код.
#elSiteTitle { display: none; }
До:
Скрытый текст
После:
Скрытый текст
Если хотите убрать только из мобильной версии сайта, то вставьте этот код.
@media screen and (max-width: 767px) { #elSiteTitle { display: none; } }
До:
Скрытый текст
После:
Скрытый текст
Recommended Comments
There are no comments to display.
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 accountSign in
Already have an account? Sign in here.
Sign In Now