Text Align buttons disabled

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Text Align buttons disabled

    Dear all,

    I am a little bit new to Contribute, but have created a site that is working
    pretty well. The only issue I'm having is that the ability to align text
    (center, left, right, justify) is disabled in Contribute - the buttons are
    grayed out. I have gone into administer roles, and I don't see anything that
    restricts this in particular. Everything else is enabled - fonts, font sizes,
    font colors. Only the alignment is disabled.

    There is a need to be able to center images on the site. Is there something
    I'm missing that can get this enabled?

    Thank you.

    mjp77 Guest

  2. Similar Questions and Discussions

    1. Radio Buttons Disabled in Flash Form
      I have a flash form that I would like to make one radio button change the enabled status of another radio button. In my code I have 3 groups of...
    2. Disabled Buttons still Interactive
      I have a datagrid with a button column disabled. The problem is, the user can still click on the button and the code-behind is executed. Has...
    3. Custom CollectionEditor - Buttons disabled?
      Hi all, I hope someone can help. I did several searches of Usenet archives, and I've seen a number of messages from people who had the same...
    4. how to Align text left & vertical align middle
      Hello, I have a asp lable control, which I use to display text in, I would like to have the text display aligned in the center and vertical...
    5. Text Align
      When I install my accesss 2000 application on some machines the application ignores the "Text Align" Property Setting in some Activex Controls(List...
  3. #2

    Default Re: Text Align buttons disabled

    I had template with

    <style>
    td {text_align: left}
    </style>

    <div align="center">
    <table width="750">
    main content
    </table>
    </div>

    the td setting in the style sheet caused the text align buttons to be disabled
    in Contribute (3.11)

    I workee round this by removing the td text align style and recoding the the
    table

    <table wifht ="750" align ="center">
    </table>

    pssuk108 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139