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

  1. #1

    Default CSS Not Updating

    Hi all,

    I'm currently looking at Contribute 3 to see if it's the thing to use to
    implement across the organisation, and I've stumbled whilst updating in
    Dreamweaver alongside it.

    I've added a new run of classes in my CSS stylesheet which Contribute previews
    fine, but as soon as I try to edit the page, the new styles dissapear, and I
    can't select them from the drop down list.

    Am I missing a way to force Contribute to refresh its style list from the CSS
    file?

    emersonbsmh Guest

  2. Similar Questions and Discussions

    1. Updating Updating site map or archive dynamically
      Hi there! ;-) Posted in Site Design as well.... Anyone know if there is a way to use Contribute to automatically/dynamically update a site map...
    2. Help with updating in SQL
      below is my query: <cfquery name="CreateMyProfile" datasource="Dating"> Update MemberMain Set MyProfile = '1', ScreenName = '#Form.ScreenName#',...
    3. Updating 3.0 to 3.1. Or not.
      What is an MSP file and how do I use it to update Contribute 3.0 to 3.1? The updater FAQ says just double click on the downloaded file but the...
    4. Updating AI Files causes position to 'bounce' when updating in Quark
      Is there any way to build Illustrator files so that no matter what edit you might come back and make to the AI file, when you update the modified...
    5. XP updating
      The internet connection I have available is 28.8K max. There is no DSL, cable, or anyother type of high speed connection available for my...
  3. #2

    Default Re: CSS Not Updating

    What I've found is that CSS IDs and classes which are preceded by a tag
    do not show up in Contribute. For example:

    Won't show in Contribute:
    div.orange { color: orange; }
    h1#header { background: #abcdef; }

    Will show in Contribute:
    ..orange { color: orange; }
    #header { background: #abcdef; }

    Hope this helps.

    - Kevin



    emersonbsmh wrote:
    > Hi all,
    >
    > I'm currently looking at Contribute 3 to see if it's the thing to use to
    > implement across the organisation, and I've stumbled whilst updating in
    > Dreamweaver alongside it.
    >
    > I've added a new run of classes in my CSS stylesheet which Contribute previews
    > fine, but as soon as I try to edit the page, the new styles dissapear, and I
    > can't select them from the drop down list.
    >
    > Am I missing a way to force Contribute to refresh its style list from the CSS
    > file?
    >
    Kevin Guest

  4. #3

    Default Re: CSS Not Updating

    I had a look through following your suggestion and bizarrely it seems I've got
    the opposite problem - as soon as I specify a tag - td.eventtitle {
    color:etc... } they appear in Contribute - no preceding tag and they're not
    there.

    Does anyone know a reason for this?

    [q]Originally posted by: Newsgroup User
    What I've found is that CSS IDs and classes which are preceded by a tag
    do not show up in Contribute. For example:

    Won't show in Contribute:
    div.orange { color: orange; }
    h1#header { background: #abcdef; }

    Will show in Contribute:
    .orange { color: orange; }
    #header { background: #abcdef; }

    Hope this helps.

    - Kevin
    [/q]



    emersonbsmh 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