How do I edit form text

Discussion in 'Templates customization' started by chris_nerat, Nov 18, 2015.

  1. chris_nerat

    chris_nerat Member

    Joined:
    Sep 21, 2015
    Messages:
    44
    I would like to change the default text in various areas of my registration pages -- mainly the product descriptions. I've included a pic with the particular text (circled in red) I'd like to make changes to -- just looking to improve the readability of the text. Please let me know which file I need to edit, as well as the specific entry if possible.

    Thank you.
    [​IMG]
  2. jenolan

    jenolan aMember Coder

    Joined:
    Nov 3, 2006
    Messages:
    510
    You should be able to change the terms text.

    ACP > Products > Select Product to Edit > Change the 'Terms Text' field to your custom requirement, the text you showed above is the default generated for you by the system.
    caesar likes this.
  3. chris_nerat

    chris_nerat Member

    Joined:
    Sep 21, 2015
    Messages:
    44
    Thanks for the reply. However, I want to change the font, not the wording. The default font does not stand out against the white background very well. I need to know where to find the file that contains the code that determines the type and weight of the font.

    Thanks
    Chris
  4. caesar

    caesar aMember Pro Developer Staff Member

    Joined:
    Oct 16, 2009
    Messages:
    2,295
    You can put your custom css to site.css file
    http://www.amember.com/docs/Site.css_file

    Use the following CSS classes to match these two elements:
    Code:
    .am-product-terms {
        color: red;
    }
    
    .am-product-desc {
        color: red;
    }

Share This Page