hey I made it work for me.
I changed the template_css to reflect the fieldset setting in AC for the list and added this code:
| Code: |
fieldset {
background-color: #EEF0EF;
border: 1px solid #8E9DA5;
margin: 0px;
padding: 0px;
}
fieldset a {
width: 100%;
float: left;
text-align: center;
background-color:#8E9DA5;
font-weight: bold;
font-size: 14px;
color: #EEF0EF;
line-height: 15pt;
}
fieldset a:hover{
color: #A70900;
text-decoration: none;
}
fieldset .small a{
width: 100%;
float: left;
text-align: right;
background-color:#8E9DA5;
color: #ffffff;
font-size: 11px;
padding: none;
}
fieldset .small a:hover{
color: #A70900;
}
fieldset span.small {
margin: 0!important;
background: none!important;
padding: 0!important;
}
|
I only had to make a small tweaked in the alphacontent.html.php for the line breaks:
| Code: |
$linkItem = "<a href='" . sefRelToAbs( $row->href ) . "'>" . $row->title . "</a><br/><br/>";
$linkItemReadMore = "<br/><a href='" . sefRelToAbs( $row->href ) . "'>" . _READ_MORE . "</a>";
|
what it gave me was this:
The title and read more both have rollover colors, so this works for me.
I have not tried to add images directly to it yet but I'm comfortable in your code now so it should not be a problem.
Thanks again! Trying to give back a little.