Announcement

Collapse
No announcement yet.

lazy css Q

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    lazy css Q

    I've got the following actinic code....[ediited for easy viewing]

    Code:
    <td align="left" height="20" bgcolor="Palette1"><span class="boxheading"><a href="SectionPageName"  class="boxlink">SectionName" /></a></span></td>
    but the bg only shows behind the text and doesn't fill the table cell - see image

    Heres the css
    .boxheading {
    font-weight: bold;
    text-transform: uppercase;
    color: <actinic:variable name="Palette2" />;
    background-color: <actinic:variable name="Palette2" />;
    }

    a.boxlink:link{
    color: <actinic:variable name="LinkColor" />;
    text-decoration:none;
    }
    how do i fill the table cell
    Attached Files

    #2
    the bground colour is applied to your span - move the class to the <TD> cell so that you get
    Code:
    <td align="left" height="20" class="boxheading"><a href="SectionPageName"  class="boxlink">SectionName" /></a></td>
    that should do the trick

    Comment


      #3
      Thats the baby, thanks for allowing me not to have to think this evening.

      Comment

      Working...
      X