Link styles via CSS...

Hi,
I would like to control my link styles within my CSS panel,
but if I set up one set (up, over, blah, blah)...how about if I
want yet another style set for link text that's within a different
color cell? Is it possible? How?
Also, I have controlled background imagery and copy via CSS.
But I would like to add ALT tags to portions of the background
image. My properties inspector won't bring it up as an option due
to the CSS. Do I just have to work with the HTML instead of the
visuals?
-- Same situation for the 'hot spot' tool, and I really need
to use it but my bg image is unselectable due to it being inserted
via CSS. The Properties doesn't "see it". How do I get around that?
thank you!!
thanks!

Pseudo-classes and container styles are what you need - here
are some
tutorials.
http://www.thepattysite.com/linkstyles1.cfm
http://www.projectseven.com/tutorials/pseudoclasses/index.htm
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"r_tist" <[email protected]> wrote in
message
news:fafjlv$q28$[email protected]..
> Hi,
>
> I would like to control my link styles within my CSS
panel, but if I set
> up
> one set (up, over, blah, blah)...how about if I want yet
another style set
> for
> link text that's within a different color cell? Is it
possible? How?
> Also, I have controlled background imagery and copy via
CSS. But I would
> like
> to add ALT tags to portions of the background image. My
properties
> inspector
> won't bring it up as an option due to the CSS. Do I just
have to work with
> the
> HTML instead of the visuals?
> -- Same situation for the 'hot spot' tool, and I really
need to use it but
> my
> bg image is unselectable due to it being inserted via
CSS. The Properties
> doesn't "see it". How do I get around that?
>
> thank you!!
>
> thanks!
>

Similar Messages

  • Link styles with CSS

    I have a web page with 2 navigations - one horizontal under
    the header and the other located vertically down the left of the
    page.
    The text colour styles of each are different.
    So I wanted to allocate seperate a:link a:visit a:hover
    a:active to both navigations, to do this I have used the following
    css:
    For the horizontal navigation:
    .table2 a:link, a:visited {
    text-decoration:none;
    color:#FFFFFF;
    .table2 a:hover, a:active {
    color: #8da2c4;
    For the second navigation:
    .table3 a:link, a:visited {
    text-decoration:none;
    color: #717578;
    .table3 a:hover{
    color:#333333;
    However when uploaded, instead of the horizontal navigation
    returning to white once visited, it turns grey - the colour of the
    second navigation. The browser (IE) obviously has trouble
    seperating the assigned link styles even though I have tried
    targeting more specifically.
    Does anyone know of a way around this, if there is a way at
    all??!
    Much appreciated

    Pseudo-classes and container styles are what you need - here
    are some
    tutorials.
    http://www.mako4css.com
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "(_seb_)" <[email protected]> wrote in message
    news:[email protected]...
    > Lou28 wrote:
    >> I have a web page with 2 navigations - one
    horizontal under the header
    >> and the other located vertically down the left of
    the page.
    >> The text colour styles of each are different.
    >> So I wanted to allocate seperate a:link a:visit
    a:hover a:active to both
    >> navigations, to do this I have used the following
    css:
    >>
    >> For the horizontal navigation:
    >>
    >> .table2 a:link, a:visited {
    >> text-decoration:none;
    >> color:#FFFFFF;
    >> }
    >> .table2 a:hover, a:active {
    >> color: #8da2c4;
    >> }
    >>
    >>
    >> For the second navigation:
    >>
    >> .table3 a:link, a:visited {
    >> text-decoration:none;
    >> color: #717578;
    >> }
    >> .table3 a:hover{
    >> color:#333333;
    >>
    >>
    >> However when uploaded, instead of the horizontal
    navigation returning to
    >> white once visited, it turns grey - the colour of
    the second navigation.
    >> The browser (IE) obviously has trouble seperating
    the assigned link
    >> styles even though I have tried targeting more
    specifically.
    >>
    >> Does anyone know of a way around this, if there is a
    way at all??!
    >>
    >> Much appreciated
    >>
    >
    > change:
    > .table2 a:link, a:visited {
    > to:
    > .table2 a:visited, .table2 a:link {
    >
    > and do the same for .table3 links.
    >
    > --
    > seb ( [email protected])
    >
    http://webtrans1.com | high-end web
    design
    > Downloads: Slide Show, Directory Browser, Mailing List

  • How do I set a 2nd Links Style using CSS

    This might be a very simple question to everyone else, but I
    am a very simple novice!
    I have set up the link style for my webpage (see below), but
    I want to add some different links in a different style on the
    page.
    a:link {
    color: #3CCCFF;
    text-decoration: none;
    a:visited {
    color: #3CCCFF;
    text-decoration: none;
    a:hover {
    color: #FF339A;
    text-decoration: underline;
    a:active {
    color: #0099FF;
    text-decoration: none;
    I have set up a different text style (below) and would like
    to create link styles off of this (ie. same size and weight) but
    with different Link, Hover, Active, Visited styles.
    h3 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: lighter;
    font-size: 9px;
    color: #ACACAC;
    line-height: 18px;
    margin: 0px 0px 0px 5px;
    Can this be done? If so, how do I add it to the CSS and the
    HTML document?
    Hope this makes sense and that someone can point me in the
    right direction,
    Thanks
    Webbo

    These should help:
    http://thepattysite.com/linkstyles1.cfm
    and
    http://mako4css.com/BasLink.htm
    Hope this helps
    Jo
    "Webbo agogo" <[email protected]> wrote in
    message
    news:e4eogg$d71$[email protected]..
    > This might be a very simple question to everyone else,
    but I am a very
    > simple
    > novice!
    >
    > I have set up the link style for my webpage (see below),
    but I want to add
    > some different links in a different style on the page.
    >
    > a:link {
    > color: #3CCCFF;
    > text-decoration: none;
    > }
    > a:visited {
    > color: #3CCCFF;
    > text-decoration: none;
    > }
    > a:hover {
    > color: #FF339A;
    > text-decoration: underline;
    > }
    > a:active {
    > color: #0099FF;
    > text-decoration: none;
    > }
    >
    > I have set up a different text style (below) and would
    like to create link
    > styles off of this (ie. same size and weight) but with
    different Link,
    > Hover,
    > Active, Visited styles.
    >
    > h3 {
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-weight: lighter;
    > font-size: 9px;
    > color: #ACACAC;
    > line-height: 18px;
    > margin: 0px 0px 0px 5px;
    > }
    >
    > Can this be done? If so, how do I add it to the CSS and
    the HTML document?
    >
    >
    > Hope this makes sense and that someone can point me in
    the right
    > direction,
    > Thanks
    >
    > Webbo
    >

  • Can the style (via CSS) of the forms built in FormsCentral be modified/changed?

    - rounding corners of the input boxes
    - adjusting input box "height"
    - adjust padding between the field/button elements
    - "submit" button text change (ex. contact us , send, etc)
    and so fourth
    Thanks in advanced for the advice/ help.
    -T

    It is not that we have planned any time soon.  You can embed your form into your own web site, at least the surrounding page could be creatively designed, but the form itself would retain it's style.
    Thanks,
    Josh

  • Dreamweaver very slow when linking to external CSS style sheets

    I'm working on a site on my PC using Dreamweaver CS6.  When I link to external style sheets, Dreamweaver virtually grinds to a halt.  Just clicking from one line to another can take up 10 seconds.  My PC is high spec, i3720, stripes set drives and 32gb ram.
    I have tried deleting the cache no change.  The external css files are part of the site and the site has been rebuilt .  Can somone help with this as it is seriously impacting my ability to use Dreamweaver.

    Hi Murray, the RAM comments were irrelevant, pointless. 32GB RAM vs 4GB RAM?  Sorry, I worked at Microsoft and as a systems integrataion consultant for a number of years.  32bit programmes don't access RAM the same as 64bit, but, having 32gb with a 64Bit OS means RAM usage for a 32bit programme is better managed. Programmes and data files are on seperate drives.  My data files kept are on 3 disk stripe sets.
    The CSS files and the HTML file are on the same drive.  AS an example of performance for data read/writes, I also use Photoshop CS6 to edit images in excess of 2gb in size containg multiple smart object, and I dont experience this type perormance lag.
    In this case, RAM is mainly irrlevent because the file are small, approx 200kb total combined size.  I mentioned RAM in my initial post because any time I've had problems with Adobe products before, I've always been asked how much RAM I have.
    So, can we please drop RAM, and perhaps focus on the problem....
         Dreamweaver, regardless of what background processes I have running, regardless of how much RAM I have, regardless of where the files are kept, has a significant performance hit when editing an HTML file with links to multiple CSS files.

  • How can you have multiple, different css link styles?

    Every time I want to create a different looking link just for some copy, it always reverts to the A:link style, even if I create a new style that looks just the way I want. How can I create multiple link styles and then be able to select the one I want at any time???
    I would greatly appreciate any help.
    Allan

    How are you applying the different styles to your links? In most cases, it's easiest to wrap the link(s) in an element, like a < div > that has a class or ID assigned, for instance class="altLinks". Then, set up the CSS style names like:
    .altLinks a:link
    ...and so on. Then, the styles would just apply to links within the element(s) with class "altLinks". Here's a tutorial that might also help:
    http://www.golivecentral.com/pages/tutorials.shtml#basicCSSlinks2
    Otherwise, if you're still having trouble, post back with a link to your page so we can see what's going on.

  • CSS Link Styles

    Having a problem displaying my links correctly using a linked
    style sheet. The links at the bottom of my pages behave properly,
    except for the fact that all of the links should be underlined, not
    just a select few. They all behave properly upon roll-over, but in
    a non-active state they all should be underlined. Everything
    appears to be fine in Dreamweaver, that is, all links are
    underlined.
    Page:
    http://relaxonmarco.com/
    CSS:
    http://relaxonmarco.com/ROMstyles.css
    Any help is greatly appreciated!

    You have the visited state of the link set to no underline...
    so once a link
    has been viewed, the underline disappears.
    a:visited {
    color: #FFFFFF;
    text-decoration: none;
    Change it to text-decoration: underline;
    if you want it to remain underlined.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    "trevisc" <[email protected]> wrote in
    message
    news:fentp8$pee$[email protected]..
    > Having a problem displaying my links correctly using a
    linked style sheet.
    > The
    > links at the bottom of my pages behave properly, except
    for the fact that
    > all
    > of the links should be underlined, not just a select
    few. They all behave
    > properly upon roll-over, but in a non-active state they
    all should be
    > underlined. Everything appears to be fine in
    Dreamweaver, that is, all
    > links
    > are underlined.
    >
    > Page:
    http://relaxonmarco.com/
    > CSS:
    http://relaxonmarco.com/ROMstyles.css
    >
    > Any help is greatly appreciated!
    >

  • Style Table via CSS

    Hi there. It looks like I’m going to need your help
    again with a vexing table issue.
    Check this out:
    http://www.fastventures.co.uk/en/sec_test.html
    Take a close look at the table that includes the main
    navigation bar and you will notice that to the right, the last cell
    is off by 1 px although the entire table was consistently styled
    via CSS to match the following criteria:
    .hspacer_36 /* height spacer **/
    background-color: #999999;
    height: 36px;
    The odd thing is, that the table right next to (to the left)
    was styled exactly like that and displays perfectly. Any ideas?
    As you can imagine, resolving this issue is critical as we
    otherwise may not be able to adopt this design.
    Thanks a million for your time and help.

    What browser are you using becuase I dont see the width diff
    (FF2.0 on win)?
    In general though I have had this issue appear when I have a
    table that has
    an odd number width and then two cells that are width=50% ...
    "HTML-Newbie" <[email protected]> wrote in
    message
    news:fcgv2m$h9$[email protected]..
    > Hi there. It looks like I?m going to need your help
    again with a vexing
    > table
    > issue.
    >
    > Check this out:
    >
    >
    http://www.fastventures.co.uk/en/sec_test.html
    >
    > Take a close look at the table that includes the main
    navigation bar and
    > you
    > will notice that to the right, the last cell is off by 1
    px although the
    > entire
    > table was consistently styled via CSS to match the
    following criteria:
    >
    > .hspacer_36 /* height spacer **/
    >
    > {
    >
    > background-color: #999999;
    >
    > height: 36px;
    >
    > }
    >
    > The odd thing is, that the table right next to (to the
    left) was styled
    > exactly like that and displays perfectly. Any ideas?
    >
    > As you can imagine, resolving this issue is critical as
    we otherwise may
    > not
    > be able to adopt this design.
    >
    > Thanks a million for your time and help.
    >
    >

  • CSS different link styles

    how can I create different links styles within the same
    element?
    Can I do something like this?
    a {
    color: #999;
    text-decoration: none;
    a:hover {
    color: #333;
    a:active {
    color: #999;
    a.style2 {
    color: #363;
    text-decoration: underline;
    font-weight: bold;
    a.style2:hover {
    color: #333;
    a.style2:active {
    color: #363;
    And then do something like this?
    <a class="style2" href="#">Request
    Information</a>
    Is this legit to do???
    Thanks for any help!
    Brian

    Point well taken, Murray. I like that better.
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > That's not the most efficient way, although it will
    work..
    >
    > The best way would be to use descendent selectors, and
    more generic styles
    > to avoid repetition, e.g.,
    >
    > a { styles; } /* this will also hit named anchors if you
    have any */
    > a:visited { styles; }
    > a:hover { styles; }
    >
    > #secondlinks a { styles; }
    > #secondlinks a:visited { styles; }
    > #secondlinks a:hover { styles; }
    >
    > (I have omitted the a:active pseudo-class for
    convenience. This method
    > will not require the explicit styling of each link the
    way Shane's method
    > would.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Shane H" <[email protected]> wrote
    in message
    > news:[email protected]...
    >> Yes but do it in this order -
    >>
    >> a:link
    >> a:visited
    >> a:hover
    >> a:active
    >>
    >> a.style2:link
    >> a.style2:visited
    >> a.style2:hover
    >> a.style2:active
    >>
    >> etc.
    >>
    >> --
    >> Shane H
    >> [email protected]
    >>
    http://www.avenuedesigners.com
    >>
    >>
    >> "Brian" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> how can I create different links styles within
    the same element?
    >>> Can I do something like this?
    >>>
    >>> a {
    >>> color: #999;
    >>> text-decoration: none;
    >>> }
    >>> a:hover {
    >>> color: #333;
    >>> }
    >>> a:active {
    >>> color: #999;
    >>> }
    >>>
    >>>
    >>> a.style2 {
    >>> color: #363;
    >>> text-decoration: underline;
    >>> font-weight: bold;
    >>> }
    >>> a.style2:hover {
    >>> color: #333;
    >>> }
    >>> a.style2:active {
    >>> color: #363;
    >>> }
    >>>
    >>>
    >>> And then do something like this?
    >>> <a class="style2" href="#">Request
    Information</a>
    >>>
    >>>
    >>> Is this legit to do???
    >>>
    >>> Thanks for any help!
    >>> Brian
    >>
    >>
    >
    >

  • How can you have two link styles on one page?

    I have one style (formatted link style) for internal links in
    my footer but I want a different style for the external links in my
    mainContent. Is it possible to have two different "styles" of links
    on one page? I tried creating a new set for the mainContent links
    and being positioned underneath my footer link's styles, the "new"
    mainContent link styles overrode the footer link style. Is there
    another way of going about this?
    Thanks anyone, Julie

    Julie:
    > I'm just not code savvy.
    As long as you permit yourself to offer this argument, you
    will struggle
    with Dreamweaver. If you are serious and want to improve, you
    will have to
    overcome your code-phobia.
    What is in these two files?
    > <link href="css/area.css" rel="stylesheet"
    type="text/css" />
    > <link href="css/footlinks.css" rel="stylesheet"
    type="text/css"
    > media="screen"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Rock Artist" <[email protected]> wrote in
    message
    news:[email protected]...
    > Murray, I was just looking over my code and noticed the
    links in my footer
    > are
    > styled, in the first place, by a class I created in my
    main.css (for all
    > of my
    > pages) called ".webdis" (nickname for webmaster and
    disclaimer). I do see
    > my
    > link format style in the head of this document but am I
    supposed to see it
    > where the footer is (in the code)?
    >
    > If you look at the first external link (the only one I
    have attached a
    > link to
    > so far):
    > </p>
    > <p class="contentlinx"><a href="
    http://www.hotsprings.org/">Hot
    > Springs
    > Convention &amp; Visitor's Bureau</a><br
    />
    >
    http://www.hotsprings.org/<br
    />
    > </p>
    >
    > It took on same style as my footer links. I'm a little
    frustrated, it just
    > seems like it should be so simple. I'm ready to launch
    this thing tonight
    > and
    > this is the only "little" thing I have left to do. I
    hate to cheat and
    > make
    > each one of these site links a graphic and link it as a
    graphic, but I am
    > so
    > ready to get this thing up.
    >
    > I'm just not code savvy. I am going to attach my code to
    this reply and
    > maybe
    > you can tell me what I'm doing wrong. Thanks, Julie
    >
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <title>Area Interests</title>
    >
    > <link href="css/main.css" rel="stylesheet"
    type="text/css" />
    > <style type="text/css">
    > <!--
    > .contentlinx {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 14px;
    > color: #336600;
    > }
    > -->
    > </style>
    > <link href="css/area.css" rel="stylesheet"
    type="text/css" />
    > <link href="css/footlinks.css" rel="stylesheet"
    type="text/css"
    > media="screen"
    > />
    > </head>
    >
    > <body>
    >  <div id="wrapper">
    > <div id="header"></div>
    > <div id="sidebar">
    > <p align="center"><a
    href="index.html"><img
    > src="images/vert_nav_bar/home_button.jpg"
    alt="navigation button to home"
    > width="155" height="50" /></a><a
    href="property.html"><img
    > src="images/vert_nav_bar/property_button.jpg"
    alt="navigation button for
    > property" width="155" height="50" /></a><a
    href="maps.html"><img
    > src="images/vert_nav_bar/maps_button.jpg"
    alt="navigation button for maps"
    > width="155" height="50" /></a><a
    href="gallery.html"><img
    > src="images/vert_nav_bar/gallery_button.jpg"
    alt="navigation button for
    > photo
    > gallery" width="155" height="75" /></a><a
    href="gallery.html"><img
    > src="images/vert_nav_bar/area_button.jpg"
    alt="navigation button for area
    > interests" width="155" height="75" /></a><a
    href="contact.html"><img
    > src="images/vert_nav_bar/contact_button.jpg"
    alt="navigation button for
    > contact
    > us" width="155" height="75" /></a></p>
    > <div id="sidephoto"><img
    src="images/tree_flower.jpg" alt="garvan tree
    > flower" width="145" height="275" /></div>
    > </div>
    > <div id="header2">
    > <h2 class="style2">AREA INTERESTS</h2>
    > </div>
    > <div class="proptext" id="content">
    > <p>HOT SPRINGS NATIONAL PARK, ARKANSAS</p>
    > <div id="photofeature"><img
    src="images/garvin_stream.jpg" alt="garvan
    > gardens" width="275" height="218" /></div>
    > <p align="left">America's first resort, also
    referred to as &quot;The
    > Spa
    > City&quot;, Hot Springs definitely has a pulse
    > of its own. Visit the sites below to find out why this
    is one of
    > the
    > most popular vacation destinations in the South.
    Featuring world famous
    > natural
    > hot springs, historic bathhouse row, and thoroughbred
    horse racing at
    > Oaklawn
    > Park. The perfect place to relax, the perfect place for
    adventure, Hot
    > Springs
    > provides a year-round opportunity for outdoor
    recreation, world-class bass
    > fishing and fabulous water sport activities, hiking,
    horseback riding and
    > quartz crystal hunting. In fact, take a day trip to
    Murfreesboro to the
    > Crater
    > of Diamonds State Park, the only diamond-producing site
    in the world that
    > is
    > open to the public and try your hand at diamond hunting
    or searching for
    > 40
    > other types of semi-precious stones, rocks and minerals.
    Garvan Woodland
    > Gardens, a 210 acre forested peninsula jutting into Lake
    Hamilton with a
    > showcase of floral landscapes, streams and waterfalls,
    is a &quot;must
    > see&quot;. Hot Springs has a strong art community as
    well. Enjoy artist's
    > galleries, film-making events and musical venues all
    over town. Did I
    > mention
    > historical architecture? There is too much to mention
    here about this
    > wonderful
    > city, please see for yourself by visiting the local
    sites below to see
    > what's
    > happening in and around town.<br />
    > </p>
    > <p class="contentlinx"><a href="
    http://www.hotsprings.org/">Hot
    > Springs
    > Convention &amp; Visitor's Bureau</a><br
    />
    >
    http://www.hotsprings.org/<br
    />
    > </p>
    > <p class="contentlinx">Facts About Hot
    Springs<br />
    >
    http://www.hotsprings.org/media_room/news-detail.asp?news_id=9</p>
    > <p class="contentlinx">City of Hot Springs<br
    />
    >
    http://cityhs.net/</p>
    > <p><span class="contentlinx">The Greater Hot
    Springs Chamber of
    > Commerce<br />
    >
    http://www.hotspringschamber.com/</span><br
    />
    > </p>
    > </div>
    > <div id="footer">
    > <p><span
    >
    class="webdis">WEBMASTER     |    &
    > nbsp;<a
    href="disclaimer.html">DISCLAIMER</a></span></p>
    > </div>
    > </div>
    > </body>
    > </html>
    >

  • Spry Photo Gallery Image Size via CSS

    Hello!
    I´ve been customizing the spry photo gallery for a couple of time, but got my little problem when viewing it on a mobile phone. When you load up the pictures with a size of 450 x 300 px for example, put up the right xml file with it´s width and height, so the gallery shows the pictures in that size. So what I want to do is that you can specify the image size with css depending on the device you´re watching the site with. There is div in the css called "mainImage" where the size is in %. When you change it to 75% for example. The pictures are correctly shown with 75% of it´s original size, but the outline (grey background) is still in 100%. When you make this grey background transparent it´s still there and moves the caption down. I guess there have to be done some changes within the SpryImageViewer.js, but I just know very little things about JavaScript. Do you have any clues how to change this to specify the image size via CSS?
    Thank you for your help!!!
    Kind regards,
    Joerg

    I see you are still using Spry 1.5. Have you considered upgrading to 
    Spry 1.6.1?
    Also your XML is broken, if you open up your xml in a normal standards 
    complaint browser such as firefox, you will see that it doesn't render
    a normal tree view as it would do with other xml files. So i suggest 
    checking those errors out.
    Its mainly because you  forgot to close your starting tag of the 
    gallerys node. (<gallery
    base = ""
    background = "#FFFFFF"
    banner = "#F0F0F0"
    text = "#000000"
    link = "#0000FF"
    alink = "#FF0000"
    vlink = "#800080"
    before your xml starts.

  • How to apply style sheet (.css) in Weblogic directory listing

    Hi,
    We are migrating a directory listing application from Apache to Weblogic.
    Earlier we did this by Apache httpd.conf entry like below :
    <Directory "/opt/apache/httpd-2.1.9/htdocs/Myreportfolder">
    IndexOptions FancyIndexing FoldersFirst NameWidth=* XHTML
    IndexOrderDefault Descending Date
    IndexStyleSheet "/css/style.css"
    </Directory>
    /opt/apache/httpd-2.1.9/htdocs folder has all it's usual resource files.
    We were able to see documents in "Myreportfolder".
    Now we have moved to Weblogic and using virtual directory mapping as below and we are trying to achieve the same thing:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wls:weblogic-web-app xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://www.bea.com/ns/weblogic/weblogic-web-app http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd">
    - <wls:container-descriptor>
    <wls:index-directory-enabled>true</wls:index-directory-enabled>
    <wls:index-directory-sort-by>LAST_MODIFIED</wls:index-directory-sort-by>
    </wls:container-descriptor>
    - <wls:virtual-directory-mapping>
    <wls:local-path>/Myreportfolder</wls:local-path>
    <wls:url-pattern>/*</wls:url-pattern>
    </wls:virtual-directory-mapping>
    <wls:context-root>/getreports</wls:context-root>
    </wls:weblogic-web-app>
    We are able to view the reports but we do not get look-and-feel of Apache like directory listing.
    but we encounter below issues:
    1) File/Folder icons are not visible - we want to use style sheets in http header from the response that is returned from weblogic server
    2) Filename is limited to 29 characters when it is showing
    3) Files are not sortable as Descending order - we sorted using tag <wls:index-directory-sort-by>LAST_MODIFIED</wls:index-directory-sort-by> but the latest file is shown at the last
    We are thinking that Weblogic must be having some configuration like Apache httpd.conf where we can apply style sheets (css ).
    We would appreciate af anyone can provide better insight into the issue.
    or is it possible to extend weblogic.servlet.fileservlet class to serve this purpose.
    Thanks & regards,
    Rabi

    Hi Vikash,
    Check the below links which will you idea on the same.
    Stylesheet for WDA without integrating in SAP Portal
    Apply custom css to WebDynpro application
    Thanks
    KH

  • Text link styles not transferring in IE 5.2 for Mac

    Hi,
    My page www.bethhockley.com/ptihome2.htm uses two styles of
    text link, both of which are defined in my external CSS
    www.bethhockley.com/bethhockleychanged.css the text links look as
    they should in all browsers barr IE 5.2 for Mac. My os is osx
    10.3.9.
    In IE10.3.9 the link [email protected] (on the blue bar
    at the bottom of the page) shows up in the link style "commercial"
    rather than in the link style "email"
    Does anyone know why this is?
    Thanks,
    Beth H

    Sorry, I forgot to say, to see how the email link at the
    bottom of the page should look please see www.bethhockley.com
    Thanks,
    Beth

  • Link Styles are not working properly

    I have set the links styles in my top nav bar to be
    Normal: BLUE
    Hover: WHITE and BOLD
    Visited: BLUE
    Actve: WHITE and BOLD
    The bold is working, but the color is not changing
    Simular problen on the Vertical Nav Ban
    Here the Hover and Bold do work, but not the active does not work
    Normal: TAN
    Hover: WHITE and BOLD
    Visited: TAN
    Actve: WHITE and BOLD
    Here's a link to the page
    http://www.imagine-y.com/Clients/TrevorSite/Trevor4

    When you use the link pseudclass in your css it has to be expressed in the correct order.
    LoVe HAte
    Link
    Visited
    Hover
    Active
    It doesn't matter that you have not expressed all four but the three that you have still need to be that way.
    Anyway, try it, we have nothing to lose!
    Martin

  • RH 11 v11.0.2.240:  Cleaning up an External Style Sheet (CSS)

    Hello,
    I am in the process of trying to clean up a CSS for an "old" RoboHelp project.  I believe the CSS contains many unused styles that were probably "trial & error" styles, but were never deleted when they failed to produce the correct format.  I know it doesn't do any harm to leave them in the CSS, but I really don't want them around! 
    I did not see a report in RoboHelp that would provide this information, but before doing a search for each individual style using a program like Agent Ransack, I wanted to see if anyone in the Community had any clever ideas as to how to accomplish this task.
    Thanks for  your input/suggestions!

    I can't say I've had this issue.  But then again, I never use the CSS property inspector to create an external style sheet.  I just hit File > New > CSS.  I add my CSS rules and Save it to the local site folder.
    Link style sheet to HTML pages.
    http://alt-web.com/DEMOS/DW-Link-Stylesheet.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for