Im trying to remove the title and love icon and name in header and have the video flush to the the navigation. I was able to remove name, category and date yet not the title or love icon. Is there something I can add to the CSS? Currently I'm using this code:
/* For Blog page */ body .meta-author { display: none !important; } body .meta-category { display: none !important; } body .meta-comment-count { display: none !important; } body .meta-love { display: none !important; } body .meta-title { display: none !important; } /* For Blog Single Pages */ body #single-below-header { display: none !important; } /* hide date and love on masonry blog */ body #post-area.masonry article.post .post-meta { display: none!important; } article.post .content-inner { border-bottom: none; }
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Im trying to remove the title and love icon and name in header and have the video flush to the the navigation. I was able to remove name, category and date yet not the title or love icon. Is there something I can add to the CSS? Currently I'm using this code:
/* For Blog page */
body .meta-author {
display: none !important;
}
body .meta-category {
display: none !important;
}
body .meta-comment-count {
display: none !important;
}
body .meta-love {
display: none !important;
}
body .meta-title {
display: none !important;
}
/* For Blog Single Pages */
body #single-below-header {
display: none !important;
}
/* hide date and love on masonry blog */
body #post-area.masonry article.post .post-meta {
display: none!important;
}
article.post .content-inner {
border-bottom: none;
}
http://staging.schiavocreative.com/scg/empathy/
Hey Again,
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Worked Perfectly! Thank you.