Images and StyleSheets

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

  1. #1

    Default Images and StyleSheets

    Hello,

    I've designed a fairly CSS-intensive website for a client that is using
    Contribute 3 to keep content up-to-date.

    The problem that I'm having is that when they add new content (images), they
    do not have the option to change its style.

    I can't use the workaround described previously (adding a blanket CSS image
    class) without recoding much of the HTML. Is there any way for my users to
    apply CSS styles to images?

    -chris

    CarnubaWax Guest

  2. Similar Questions and Discussions

    1. Stylesheets and JS
      I am trying to attach a style sheet sing JS, but it doesn't seem to work. if (navigator.userAgent.indexOf ("MSIE")) { (document.styleSheets.href =...
    2. Using StyleManager on stylesheets
      Can the StyleManager be used to change properties of specific components on a style sheet. For example StyleManager.styles.global.fontWeight =...
    3. Lost stylesheets
      This worked for me (in C3). You have to select 'Show only CSS styles included in this CSS file:', not 'Show all CSS styles'.
    4. css stylesheets
      Hello everyone, I have following problem : I develop asp.Net Application using web controls. In each control I have a link to css stylesheet. If...
    5. ASP en stylesheets (maybe a little bit of toppic)
      Hello, I am making a website where the user can choose a 'skin'. This works with asp en stylesheets. In the stylesheet, a number of tags are...
  3. #2

    Default Re: Images and StyleSheets

    What kind of CSS properties do you want applied to images? Their aren't many
    options that I can think of.

    Unfortunately Contribute doesn't allow you to apply CSS classes directly on
    images, but there is something else you can try. Put your image in a table,
    (with border="0") then apply a CSS class to that container table cell.

    Then, slightly rewrite your CSS code to reflect it applied to a <td> and
    decend down to its child element, the <img>

    td.style img { .... }

    or

    table.class td img { .... }

    The image will get styled, but your applying the style to TD. Make sense?

    mzanime.com Guest

  4. #3

    Default Re: Images and StyleSheets

    We train our clients to apply styles to images by first clicking on the
    image in the page, then going to FORMAT>STYLES and finding the appropriate
    style in the client stylesheet.

    Typically our image styles include float, border, padding, margins.



    "mzanime.com" <webforumsuser@macromedia.com> wrote in message
    news:d6da13$gvv$1@forums.macromedia.com...
    > What kind of CSS properties do you want applied to images? Their aren't
    many
    > options that I can think of.
    >
    > Unfortunately Contribute doesn't allow you to apply CSS classes directly
    on
    > images, but there is something else you can try. Put your image in a
    table,
    > (with border="0") then apply a CSS class to that container table cell.
    >
    > Then, slightly rewrite your CSS code to reflect it applied to a <td> and
    > decend down to its child element, the <img>
    >
    > td.style img { .... }
    >
    > or
    >
    > table.class td img { .... }
    >
    > The image will get styled, but your applying the style to TD. Make sense?
    >

    gallery 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