Hello
I have two questions about the 1st Class template.
1. How can I hide the "next" and "back" buttons in articles?
2. I want a shadow around some pictures.
Therefor I added this code to the custom.css:
/****[ DROP SHADOWS ]*********************************************/
.dropshadow, .dropshadow em, .dropshadow span {
display:inline-table;
/* \*/display:block;/**/
}
/*COMMENT OUT FROM HERE IF YOU WANT PNG SUPPORT INSTEAD OF JPG */
.dropshadow {
margin:0;
float:left;
background:url(../../../images/dropshadow-main.jpg) right bottom no-repeat;
}
.dropshadow em {
background:url(../../../images/dropshadow-bottom.jpg) left bottom no-repeat;
}
.dropshadow span {
padding:0 11px 11px 0;
background:url(../../../images/dropshadow-top.jpg) right top no-repeat;
}
.dropshadow img {
display:block;
}
.dropshadow td {
display:block;
}
and in the article I have this code:
<p class="dropshadow"><em><span><img src="images/faehmily/IMG_2371.jpg" border="0" alt="" width="480" height="325" /></span></em></p>
It worked in my last template but not in this one.
Please Log in or Create an account to join the conversation.