+ Reply to Thread
Results 1 to 5 of 5

Thread: Special Text Font for Listing Fields

  1. #1
    Senior Member
    Join Date
    Aug 2010
    Posts
    174

    Special Text Font for Listing Fields

    It will be great to be able add a special font or size for Listing Fields.
    For instance to make a Title field in different color and size.

  2. #2
    Hello Petnax,

    Do you mean that the user can modify the listing fields or you want change it manually in a code?
    Please explain your idea in more details.
    Viktor,
    Flynax technical department,
    Best wishes.

  3. #3
    Hi,

    We can implement it as customization, it's possible to add to the listing fields edit pages additional attributes - font-size, color etc. or maybe just extra style field which will be applied to the field, you will able to manage it through AP>Edit Field. Please submit a ticket in case you interested in a customization.


    Alternatively you may set specific font size or color through editing style.css file in your template, or better create separate file for this and call the file from header.tpl

    For example to change style of states field on listing details page, do following (states is field key)

    Html code of field
    Code:
    Only registered members can view the code.
    so we can add style
    Code:
    Only registered members can view the code.

  4. #4
    Senior Member
    Join Date
    Aug 2010
    Posts
    174
    Quote Originally Posted by Mike F. View Post
    Html code of field
    Code:

    <tr id="df_field_states">
    <td class="name">States:</td>
    <td class="value first"> Florida </td>
    </tr>
    Mike:

    Thank you for info; however, where this code located?
    In which file should I look for "Html Code of Field" in order to apply additional Styles?

  5. #5
    The code in the templates/template/tpl/blocks/field.tpl

    but its not necessary to edit code in this file if you want just add css styles. You can just add it to style.css file without changing html itself.

+ Reply to Thread