Hello, I currently have my home page set pretty much as I want to , but I am missing a container for the article (like the one they have on http://www.macrumors.com) is there a way to contain each article like that?
Thanks
This topic has 9 replies, 3 voices, and was last updated 9 years, 5 months ago ago by Robert Hall
Hello, I currently have my home page set pretty much as I want to , but I am missing a container for the article (like the one they have on http://www.macrumors.com) is there a way to contain each article like that?
Thanks
Hello,
This question is a bit unclear for us. Could you please clarify us with more details and show us screenshots?
Regards,
Robert Hall
Hello,
Do you mean you want to have border around the article?
Add this code in Global Custom CSS section:
.blog-post {
padding: 20px;
border: 1px solid grey;
}
Regards,
Eva Kemp.
Thank Robert Hall and Eva Kemp , yes the border suggested is part of what i am looking for, the other part is the little title bar for the border like the one in macrumors.com the “red” part with the white title.
As always thanks for the wonderful support!
Please try this code in Global Custom CSS.
article.post h2 {
background: red;
margin-left: -10px;
margin-right: -10px;
padding: 10px;
}
article.post h2 a {
color: white;
}
Regards,
Robert Hall
Thanks Robert, exactly what I was looking for, now I need to move the breadcrumb under the colored bar (so that the bar is exactly at the top of the box and the breadcrumbis under it )and I am set.
Please try to replace the code above for that one
article.post h2 {
background: #22a2dc;
margin-left: -10px;
margin-right: -10px;
padding: 5px 9px;
position: absolute;
top: 0;
width: 100%;
}
article.post h2 a {
color: white;
}
.blog-post {
position: relative;
}
Regards,
Robert Hall
Thank you very veyr much.. I think I am learning how it works!
Congrats again on the awesome support!!!
You’re welcome!
Regards,
Robert Hall
The issue related to '‘Article container’' has been successfully resolved, and the topic is now closed for further responses