For that purpose you may use the following CSS:
.site-info {
display:none !important;
}
Go to WordPress Dashboard > Appearance > Customize > Additional CSS, you may paste the above CSS there. It worked for default WordPress theme 2017, perhaps it may not work for other commercial themes.
Note that Attribution will be visible in the source code. For hiding anything like above you just need to know the CSS "class" or the "id" that particular element is using, and use the same (above) CSS rule for them. Here the term "!important" is used to override earlier CSS rule.
Comments
Post a Comment