This topic has 8 replies, 2 voices, and was last updated 8 years, 1 months ago ago by Rose Tyler
how do i justify the text on my home page post slider?
thanks
Hello,
You can add this code in Custom CSS:
.recentCarousel .slide-item .caption p{
text-align: justify;
}
Regards,
Rose Tyler.
thanks, that worked!
now, how do i hide category and posted by on the post slider?
http://prntscr.com/cq3j25
also, how do i justify text on blog page?
http://prntscr.com/cq3khf
Hello,
Please add this code:
.home .slide-item.thumbnails-x.post-slide h6.active {
display: none;
}
.home .slide-item.thumbnails-x.post-slide .meta-post {
display: none;
}
.blog .content-article{
text-align: justify;
}
Regards,
Rose Tyler.
THANKS!
now, how do i hide the category on the blog page… also how do i set all featured images to show same height and width??
Hello,
You are welcome!
Please use this code:
.blog .active {
display: none;
}
Your images have different original sizes. You should upload them with similar dimensions or add this code:
.blog-post img{
height: 155px;
}
Regards,
Rose Tyler.
thanks,
the category still shows on the post page. how do i hide it? thanks
http://prntscr.com/cq4r6z
Hello,
Add the following code in Custom CSS
.blog-post h6.active {
display: none;
}
.blog-post .wp-picture {
margin-bottom: 30px;
}
Also, you can read the article and watch the video: https://developers.google.com/web/tools/chrome-devtools/iterate/inspect-styles/
Regards,
Rose Tyler.
You must be logged in to reply to this topic.Log in/Sign up