I’m having a play with Armadillo, not used it for a long time, so fired up a test blog: http://dev.ci-clientservices.com/arma/
I’ve got an old list of css to style things, but a lot doesn’t seem to work anymore, maybe Arma got an update and the classes changed.
I’m working thru, but I’m totally stuff on a few things. The css i have is below, and some works.
.armadilloMenuItem {
background-color: #464646;
border: 0px solid #464646;
width: 90%;
text-align: left;
font-size: 20px;
}
#armadilloContentMenu ul li a {
display: block;
margin: 0.3em;
padding: 0 0.5em;
line-height: 2em;
text-decoration: none;
border-radius: 0px;
width: 200px;
}
#armadilloContentMenu ul li a:hover {
background-color: #cccccc;
color: #464646;
}
.blog-permalink {
color: #0375B4;
}
.blog-entry-date {
margin-bottom: 20px;
}
.blog-entry-title{
font-size: 2em; color: #0375B4;
}
.blog-entry {
border-bottom-style: solid;
border-bottom-width: 0px;
border-color: #C0C0C0;
border-radius: 5px;
margin-bottom: 34px;
background-color: #EBEBEB;
padding: 20px;
}
.blog-entry-body {
margin-bottom: 34px;
}
.blog-entry-tags {
margin-top: 20px;
margin-bottom: 40px;
}
.blog-tag-cloud li {
display: inline-block;
margin-bottom: 1opx;
margin-top: 15px;
margin-right: 5px;
}
.armadilloPageContainer {
margin-top: 40px; margin-bottom: 80px;
}
#blog-categories {
margin-bottom: 34px !important;
}
#blog-archives {
font-style: italic;
margin-bottom: 34px
}
What I’m trying to do at the moment is put some space between the categories (blog-categories) and the blog archive but nothing is working. Used !important tec. Nothing seems to be taking.
Help!
:-)