Announcement

Collapse
No announcement yet.

search results text link size

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

    search results text link size

    Evening

    I thought I had asked this but alas.... I cannt find any thread.

    Within my search results, I have the Short Description field, that displays as a link. The font is larger than the rest of detail in the search results, is there any way of reducing the font size. I have looked in Act_resultstemplate, I was thinking that maybe i could create a new css and set font size there, but i cannot find any detail re css.

    My code currently (just for the part doscussed) is...

    <Actinic:SEARCH_RESULTS>
    <TR bordercolor="#a1a5a9" bgcolor="#ffffcc">
    <TD align="center"><Actinic:S_ITEM/></td>
    <td><Actinic:S_LINK/><B><Actinic:S_PNAME/></B></A></td>
    <td><Actinic:S_DESCR/></td>
    <td><div align="left"><Actinic:S_SNAME/></div></td>
    <td align="right"><Actinic:S_PRICE/></div></td>
    <!-- td><Actinic:S_PROP/><BR></td -->
    </TR>
    </Actinic:SEARCH_RESULTS>

    ANy ideas

    Thanks
    Steven

    #2
    <Actinic:S_LINK/><B><Actinic:S_PNAME/></B></A></
    <Actinic:S_LINK/>

    This becomes the <a href=...> tag.

    <B><Actinic:S_PNAME/></B>

    This becomes the product name. Insert some <font> tags around this to change the size.

    </A>

    This is the close of the tag.

    Comment

    Working...
    X