Announcement

Collapse
No announcement yet.

Text formatting in Brochure Fragments

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

    Text formatting in Brochure Fragments

    Hi All
    Where can I find the Formating of paragraphs and Text . I dont like the way the Text is being laid out in my brochure Fragment.. Is it in one of the templates...? It seems to decide exactly how many words/line and where the line break goes etc..
    cheers

    #2
    With Fragments you select the layout within the fragment itself that you add, so on the layout line, click the Edit button and this will bring up the html used for that particular fragment..

    There are a lot of different fragments within Actinic available to you, so you will need to change to what you need within the fragments concerned on an individual basis, i.e. each fragment template..

    Comment


      #3
      HI and Thanks
      I have been editing the Act_ImageandTitle.html template...I put in a long line of text without formatting, and it is displayed in preview as a paragraph with 6 lines....where is this formatting being done?

      thanks

      Comment


        #4
        Generally you would enter the text to be displayed within the text area of the fragment within the software and not directly within the template...

        Do you have the page online or post the content of what you have in this fragment to be able to better advise on it?

        Comment


          #5
          This is the code for the brochure fragment...
          <!-- ImageAndTitle HTML begin -->

          <tr>
          <td colspan="3" valign="top">

          NETQUOTEVAR:FRAGMENTANCHOR
          <table border="0" width="100%" cellspacing="10" cellpadding="1">
          <tr>
          <td width="100%"><h4>NETQUOTEVAR:BROCHURE_TITLE </h4>
          NETQUOTEVAR:BROCHURE_TEXT </td>
          </tr>
          <tr>
          <td width="100%" align="center">NETQUOTEVAR:BROCHURE_IMAGE</td>
          <td width="100%" align="center" > <img src="CUSTOMVAR:MYIMAGE"> </td>
          <td width="100%" align="center">NETQUOTEVAR:BROCHURE_IMAGE</td>
          <td width="100%" align="center">NETQUOTEVAR:BROCHURE_IMAGE</td>
          </tr>
          </table>

          </td>
          </tr>

          <!-- ImageAndTitle HTML end -->

          Comment


            #6
            You have a TD cell in one row and then 4 TD cells in the following row, but have not dictated the correct html.

            change the

            <td width="100%"><h4>NETQUOTEVAR:BROCHURE_TITLE </h4>

            to

            <td width="100%" colspan="4"><h4>NETQUOTEVAR:BROCHURE_TITLE </h4>

            which will then allow your title and text to span the full width.

            That should sort it out...

            Comment


              #7
              However, if your plan was to put each additional TD onto a separate line/row, then you need to do the following instead...

              <td width="100%" align="center">NETQUOTEVAR:BROCHURE_IMAGE</td></tr><tr>
              <td width="100%" align="center" > <img src="CUSTOMVAR:MYIMAGE"> </td></tr><tr>
              <td width="100%" align="center">NETQUOTEVAR:BROCHURE_IMAGE</td></tr><tr>
              <td width="100%" align="center">NETQUOTEVAR:BROCHURE_IMAGE</td>

              Comment


                #8
                Hi Thanks
                So you are saying that there is no pre-formatting within the css templates ..I thought that these css's do a lot of the preformatting of text..
                cheers

                Comment

                Working...
                X