Notice

If you are going to submit ticket for our themes support , then make sure we are not providing support for any Porn/Adult related websites.
When You Submit Ticket Please Include Your WordPress & FTP login info with Website URL so When our team will see any error then there was no need to wait for login info, Our Team will fix that ASAP.
We are offering Designing services like LOGO Design and Banner Design etc.

Okay
  Print

Remove Author Name

If you want to remove author name then you need to follow this. 

We are using Red Color on our demo so our CSS file is stylesheet-red.css

1- Remove Author name from Single post page 

beetube/css/shylesheet-red.css Line Number : 1910
Here You will see this code.

.single-post .author{
    background:url(images/icons-red.png) no-repeat -5px -25px;
    padding-left:25px;
    margin-right:10px;
    }

Replace with :

.single-post .author{
    background:url(images/icons-red.png) no-repeat -5px -25px;
    padding-left:25px;
    margin-right:10px;
    display: none;
    }

2- Remove from home page / category page. 

beetube/css/shylesheet-red.css Line Number : 1897

Here You will see this code.

.author{
    background:url(images/auther-icon.png) no-repeat left;
    padding-left:25px;
    margin-right:10px;
    }

Replace with :

.author{
    background:url(images/auther-icon.png) no-repeat left;
    padding-left:25px;
    margin-right:10px;    
    display: none;
    }