CSS hr rule?

I use the <hr> tag to separate my content up. I had
been using an image of the line with a particular colour, which
worked great at the time!
I'm now trying to go over to CSS for most things because if
If I needed to change the colour scheme the old images didn't go
with the new scheme; which meant manually changing multiple images
across multiple pages. I now have an hr rule in my CSS sheet which
I initially thought was working (at least in my Dreamweaver
window), but when I try to F12 to preview it in the browser; it
shows as 'grey'
I have changed it in one location on our live site
here
and it still shows as 'grey'. It is the top line above the swan
picture. The line separating the swan and our next day course is
still with the image.

"Pakman36" <[email protected]> wrote in
message
news:fo6soe$7uk$[email protected]..
> Thanks for you input Thierry, I'm very much in the old
school of usig
> tables
> and the asscociated <tr> and <td>, we are
slowly getting the site to be
> more
> CSS efficient. At the early stages of my CSS learning
curve! What do you
> mean
> 'styling the row'? I guess you mean the <tr>, but
then I do not use the
> <hr> on
> every <tr>, would this mean it would have to be
rules that apply to
> certain
> tables? How would this be done? Pakman
You'd use a class on the TRs you want to style (for example
<tr
class="item">).
Then you'd write a rule to apply a border or a background
image (or whatever
you want) on these elements:
tr.item{border-top:1px solid blue;}
That will let you remove a lot of markup and will also get
you one step
closer to what is considered "best practices" ;)
Thierry
Articles and Tutorials:
http://www.TJKDesign.com/go/?0
Keep your markup *clean* with these DW extensions and
scripts:
http://www.divahtml.com/products/scripts_dreamweaver_extensions.php

Similar Messages

  • Css style rule keeps disappearing from firebug css panel

    Hi Guys
    I'm playing around with firebug to see how certain changes to the CSS would look on my site. However, when i insert a new style element, once i press enter, it disappears. This is the rule:
       .avPlayerWrapper {
        clear: both;
        display: block;
        float: left;
        text-align: center;
        border:2;
    when i insert the "border:2;" element , as soon as i press enter it disappears.
    Does anyone know what may be causing this?

    @ja,
    That's only partly correct.
    To work in all browsers, the border shorthand property requires 3 attributes:
    width (medium, thin, thick, or a number value in px or em),
    style (dashed, dotted, double, solid, inset, outset, groove, ridge or none)
    color (either #hex or rgb).
    This is valid code:
    #divName {
         border: 2px solid #000;
    And this is valid:
    #divName {
         border: thin dotted #000;
    For more on CSS Borders:
    http://www.w3schools.com/css/css_border.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How to apply CSS to Existing Site

    Help! I am a Macromedia Dreamweaver user. I manage a few simple sites on a volunteer basis. I was recently forced by a new computer purchase to upgrade to CS4 for Vista compatibility.
    I have never used Style Sheets. I've spent several hours this afternoon combing the web for instructions and found that most of the information assumes way more knowledge than I have, and the more basic articles seem to provide nice overviews of what CSS is and why one might want to use it, or possibly how to build a new site using CSS, but they have not answered my "how to" questions about my existing sites.
    My two most pressing unanswered question are these:
    1)  I seem to have successfully created a new CSS rule by selecting a section of text in the document, setting the Property Inspector to CSS and then naming the rule and choosing a font style and size (although the new rule dialog box never appeared - I did it all in the Property Inspector). Do I have to go through the whole site and apply this rule individually to each section of body text? The existing document has all the text set by its specific features (e.g. Arial Bold 10), not using "heading 1" "heading 2" etc.
    2) I do not use Dreamweaver to upload my finished documents. I use a site-managemet ftp page on my host server. Once I've created these CSS style rules, is there anyting that I need to upload besides my edited pages?
    Thank you in advance for help.

    If you are using the same font family, font size, colour, etc... you can use a separate style sheet and just use
    body {font-size:14px; font-family:arial, helvetica, sans-serif}
    this will make all your site the same body style.
    Do I have the book for you:  CSS in easy steps by Mike McGrath  isbn#1-84078-301-x
    It's a really good beginner's book to CSS.  And really easy to read!  Was a huge help to me in my beginnings of CSS.
    Also, www.lynda.com is a great resource.
    Hope this helps!
    You'll need to upload that extra css page with the rest of your site!
    Message was edited by: JulesN

  • Could not execute the css file

    Hi,
    I have this code:
    named: email11.java
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    import business.User;
    import data.UserDB;
    import util.MurachPool;
    public class EmailServlet extends HttpServlet{
    private MurachPool connectionPool;
    public void init() throws ServletException{
    connectionPool = MurachPool.getInstance();
    public void destroy() {
    connectionPool.destroy();
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException{
    Connection connection = connectionPool.getConnection();
    HttpSession session = request.getSession();
    String message ="";
    try{
    Vector users = UserDB.readRecord(connection);
    session.setAttribute("users", users);
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(
    "/email11/show_email_entry.jsp");
    dispatcher.forward(request, response);
    }catch(SQLException sqle){
    message = "EmailServlet SQLException: " + sqle;
    session.setAttribute("message", message);
    RequestDispatcher dispatcher =
    getServletContext().getRequestDispatcher(
    "/email11/join_email_list.jsp");
    dispatcher.forward(request, response);
    connectionPool.freeConnection(connection);
    and this code in jsp file:
    named: show_email_entry.jsp
    <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
    <%@ taglib uri="../WEB-INF/tlds/murach.tld" prefix="mma" %>
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="DisplayData.css">
    </head>
    <body>
    <h1> Test</h1>
    <table cellspacing="0" cellpadding="1" border="1">
    <tr valign="bottom">
    <td class="headerColumn" align= "center">First Name</td>
    <td class="headerColumn" align= "center">Last Name</td>
    <td class="headerColumn" align= "center">Address</td>
    <td class="headerColumn" align= "center">Phone Number</td>
    <td class="headerColumn" align= "center">Cell Number</td>
    <td class="headerColumn" align= "center">Email Address</td>
    </tr>
    <mma:users>
    <tr>
    <td><%= firstName %></td>
    <td><%= lastName %></td>
    <td><%= address %></td>
    <td><%= phoneNumber %></td>
    <td><%= cellNumber %></td>
    <td><%= emailAddress %></td>
    </tr>
    </mma:users>
    </table>
    </body>
    </html>
    This is the css file code that I like to apply to the show_email_entry.jsp
    named: Displaydata.css
    This rules are for background color for data display
    /*td.column{
    background-color: #f0f8ff;
    background-color: #fffacd;
    td.headerColumn{
    background-color: #daa520;
    font-weight: bold;
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 10pt;
    td.column{
    font-family: sans-serif,Verdana, Arial, Helvetica;
    font-size: 10pt;
    white-space: nowrap;
    background-color: #fffacd;
    a{
    text-decoration: none;
    h1{
    color: red;
    They are working fine. However, it just does not execute the css file in the show_email_entry.jsp. Another word, the headerColumn should show some color as I coded it in the css file. But it shows only white background and black text. I have the file named DisplayData.css in the same directory as the file named show_email_entry.jsp. But it still does not work.
    if I create a test.jsp and use with the DisplayData.css file above then it would work fine. But when I used it with the servlet file, then it would not work.
    Anyone knows why ?
    Thanks
    zbonzbon

    Pls, disregard this thread. I have found my answer..
    Thanks,
    zbonzbon

  • Multiple Ports for one Content in CSS

    Dear All,
    We configure a CSS11506 (v5.2) and the enduser wants to setup only one content (vip address) to support multiple services (such as http, https and DNS).
    Since, in the configuration, we can only set one port in content rule. Is there any method to setup this requirement? Or we only need to create several content with the same VIP but for different services port?
    Thank you very much!
    Best Regards,
    Lawrence

    take a look at the odcumentation regarding the way in which the css processes rules, you can have multiple rules with the same vip...just specify the separate tcp ports in each rule, making them layer 4 rules.
    I would advise against an L3 rule, as there is an outstanding bug in the 5.00 and 5.03 releases regarding unexpected switch reboots when UDP hits a rule.
    HTH
    Mike

  • Report CSS not working after upgrade

    I have been researching this issue for days with no luck.  I recently upgraded a project from VS2008 to VS1013.  During this process, I downloaded and installed the 13.0.10 installer.  Everything seems to work great except for the CSS functionality on the reports (not the report viewer).  Here's the scenario:
    A webform has a reportviewer control and a link to the css file (Reports.css):
    <head id="head1" runat="server">
        <link href="Reports.css" rel="stylesheet" type="text/css" />
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
                AutoDataBind="true" HasCrystalLogo="False" Height="50px" Width="350px"
                style="position:relative;z-index:0;" CssFilename="ReportViewer.css" ClientIDMode="Inherit" HasRefreshButton="False"></CR:CrystalReportViewer>
        </div>
        </form>
    </body>
    Prior to converting the project this would cause the report to be rendered according to the CSS style rules.  After converting the project it does not.  It seems the issue is related to the fact that the report viewer now renders the report output to an iFrame, but I cannot find a way to make the iFrame use the stylesheet.  How do we get the CSS style applied to the reports?

    UPDATE:
    When inspecting the rendered iframe's source, I can see that the CSSClass names specified in the report document have been modified.  In the test report I am working with, the detail field's CSSClass is called "DetailField", but the resulting HTML shows a different class name (see below).
    <span class="fc437d0bef-5614-4d69-8b61-66b69cc7ac52-1 DetailField">
    I am currently working to make this work via jquery, but I've never used it in a project before and I'm struggling with it.  If anyone knows how to make this work, please let me know.
    Thank you

  • Should I convert my inline css to external?

    I was told my site would be cleaner and easier for google to find if I changed my css styles to external.  All my pages are a little different, so I was also told I would have to do it for every page.  What is the best way to do this?  I knew very little about css when I created the site, sorry.
    Do I select everything from <style to style> right click and select  Convert inline CSS to rule.  That option is greyed out.  Do I select new rule?
    The site is www.macrophotographer.net  I am a not a professional web designer so go easy on me.

    I have had a look at source code for your home page, your styles are embedded in two groups between your pages head tags, so it will be easy to externalise the css.  In code view if you put your cursor in one of the styles you wish to move and then click on the 'Move or convert css' button or go to format > css styles > move css rules ... you can move the styles one by one into an external stylesheet.
    The other and what I think will be the quicker way for you will be to open your webpage then go to File > New > Blank Page > CSS > Create, this will create a new empty stylesheet already with the encoding set.  With this still open switch tabs back to your webpage and select all the code between the <style type="text/css"> and </style> cut it and then switch tabs back to the stylesheet and paste. Save the stylesheet, then switch tabs back to your webpage, in code view you need to enter the following line before the  </head> tag
    <link href="/nameofstylesheet.css" rel="stylesheet" type="text/css" />
    Richard

  • Sticky sessions across multiple content rules

    Hi,
    If a client PC initiates two requests which match different content rules on a CSS (first request http port 80 to CSS VIP downloads a small application. This application then sends a second request to the VIP, on tcp port 8085) can sticky rules be configured on the CSS content rules, so that they hit the same destination server, given that both content rules contain the same services, and hence be considered part of the same session?
    Thanks

    there is no sitcky accros content rules option on the CSS.
    But there are solutions to this problem.
    First, are you doing anything special with your HTTP content rule ? Like cookies or url inspection ?
    If not, you can group the 2 content rules into a single one. You will have 1 Layer3 rule instead of 2 Layer 4 rules.
    If you have L5-7 rules [http inspection], the previous solution is not possible.
    You will need to maintain 2 rules.
    You could then use a 'balance srcip' balancing method on both rules.
    This algorithm is deterministic.
    The same client will always go to the same server.
    Hope this helps.
    Regards,
    Gilles.
    Thanks for rating.

  • Css excessive arp requests

    Hello all,
    my CSS 11150 with WebNS 5.00 does excessive arp requests on its interfaces (up to 100 arps per second). The box seems to arp EVERYTHING especially in the 10.147.0.0 /16 subnet even if it is not used at all. My config is as follows:
    ip no-implicit-service
    ip opportunistic disable
    ip route 0.0.0.0 0.0.0.0 10.147.1.1 1
    circuit VLAN1
    ip address 10.147.248.10 255.255.0.0
    circuit VLAN2
    ip address 10.145.45.254 255.255.255.128
    service sunbl3s6-443
    ip address 10.145.45.136
    protocol tcp
    port 443
    keepalive type tcp
    keepalive port 443
    active
    service sunbl3s6-80
    ip address 10.145.45.136
    protocol tcp
    port 80
    keepalive type tcp
    keepalive port 80
    active
    service sunbl3s7-443
    ip address 10.145.45.137
    protocol tcp
    port 443
    keepalive type tcp
    keepalive port 443
    active
    service sunbl3s7-80
    ip address 10.145.45.137
    protocol tcp
    port 80
    keepalive type tcp
    keepalive port 80
    active
    owner unix-systems
    content vrp-test-443
    vip address 10.145.45.253
    protocol tcp
    port 443
    balance aca
    add service sunbl3s6-443
    add service sunbl3s7-443
    active
    content vrp-test-80
    vip address 10.145.45.253
    protocol tcp
    port 80
    balance aca
    add service sunbl3s6-80
    add service sunbl3s7-80
    active
    group vrp-test
    vip address 10.145.45.253
    add destination service sunbl3s6-80
    add destination service sunbl3s6-443
    add destination service sunbl3s7-80
    add destination service sunbl3s7-443
    active
    Does anybody have any hints?
    Many thanks in advance
    Uli

    Hi,
    I did a software upgrade yesterday and put ap0610405.adi.gz on the box. But the behaviour didn't change. We also checked the cabling for loops, that's also fine.
    We have observed some further things:
    The broadcasts are only on the 10.147.0.0 /16 subnet. As this is our local lan backbone we can't change it, I could only shift the frontend into another subnet and route it towards the backbone.
    We have another two boxes (CSS11503 with 7.4) with a similar configuration - they also do excessive arp requests in the same subnet, the primary as well as the secondary. But the addresses being arped for are not necessarily the same.
    I took some packet traces looking for broadcasts and multicasts that could inspire the boxes to arp for every address they see - nothing, the addresses being arped for are not seen in the seconds before the CSS arp request.
    What could trigger arp requests for machines which never accessed or used the CSS services / rules??? I've never seen such a behaviour before...
    Best Regards
    Uli

  • Persistance and sticky connections in css

    what is the use of persistance command in CSS content rule.If using Layer 3 stcky configuration it is necesary to give persistance command in content rule?
    what is the difference between flow-timeout-multiplier and sticky-inact-timeout?

    Hi Avinash,
    This is an hot topic in content switching    If using IP src sticky, as it seems you are doing, it wouldn't make much difference tweaking persistent parameter.
    However, just for reference, it may occur that CSS may need to switch servers within the same rule due to two particular reasons:
    1) sticky cookies/cookieurl/url
    2) sorry servers
    So, by default the CSS, once matched the content rule, will take only one LB decision per TCP connection, based on the first HTTP request.
    With HTTP 1.1 a connection may be used for several requests and responses, and potentially a new LB decision might be needed on each request, if this is the case the CSS needs to be explicitly configured with:
    #no persistent
    Now regarding flow-timeout-multiplier and sticky-inact-timeout, the former refers to the connection idle timeout parameter, it regulates the time a flow will remain in the connection table while idle. In other words, it is the time period that must elapse for an idle flow before the CSS cleans up the flow.
    Sticky-inact-timeout defines the inactivity timeout period on a sticky connection before the CSS removes the sticky entry from the sticky table.
    For more details on these parameters check thEse links:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/css11500series/v8.20/command/reference/CmdGrpC.html#wp1139589
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/css11500series/v8.20/command/reference/CmdOwCnt.html#wp1141110

  • Extract CSS

    Hi,
    I just started trying out Edge Animate. At first glance I am lovin it.
    I started playin around and made a decent header with some animations. I opened this element in coda and started building a mock-up(ish) website, using HTML5 CSS3 and JS. After a while the bg-color of the header (from Animate) was no longer pleasing so I figured out where in the JS to change it, no probs. But..
    ..this question may be silly but is there a way to export the CSS from Animate?
    Thanks! -Jimmy

    nope afaik, but the trick i used was to copy the html from the stage. paste it into dream weaver and run the "convert inline css to rule" widget

  • CSS inspector lacks "Add Property" icon and "tree" format.

    This probably has a very simple solution, but here's the story: In all the tutorials, the CSS inspector window shows the CSS cascade formatted as a sort of tree, with lines connecting the various properties. When I open DreamWeaver, the inspector just shows the properties in a vertical column. Is there a way I can make it display the tree outline?
    Also, there's no "Add Properties" icon on my CSS inspector.
    I sincerely hope there's a quick fix for this.

    Assuming you have CSS style rules embedded in your page or the HTML document is linked to an external stylesheet, hit the ALL button.
    To add a new rule, hit the + sign.
    More on CS5 CSS Styles Panel.
    http://help.adobe.com/en_US/dreamweaver/cs/using/WSbb8fae38174aec9d-4fb84361126e2b2aaf3-80 00.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Vertically Centering Block Links Using CSS

    How would I vertically center the
    First Cell link within it's own gray background on the
    following page?
    Test
    Page

    Cell height is not invalid. It is deprecated and will cause
    your page to
    fail validation against strict doctypes.
    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
    ==================
    "Osgood" <[email protected]> wrote in
    message
    news:[email protected]...
    > Dont use height on your td cells, it's invalid mark-up
    and will cause you
    > issues. Set the height on the 'a' by using either
    padding top and bottom
    > or line-height, as the example below shows.
    >
    > Cut and paste code below into a new Dreamweaver document
    and then run it
    > via a browser.
    >
    >
    >
    > <!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=iso-8859-1" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > body {
    > margin: 0px;
    > padding: 0;
    > }
    > a {
    > font: 12px Verdana;
    > line-height: 50px;
    > width: 200px;
    > display: block;
    > background: #CCCCCC;
    > text-decoration: none;
    > }
    > a:link {
    > color: #0000FF;
    > }
    > a:visited {
    > background: #999999;
    > }
    > a:hover {
    > background: #999999;
    > }
    >
    > #table {
    > width: 200px;
    > border: 1px solid #000000;
    > }
    > .cells {
    > text-align: center;
    > border: 1px solid #000000;
    > }
    > </style>
    > </head>
    >
    > <body>
    > <table border="0" cellpadding="0" cellspacing="0"
    id="table">
    > <tr>
    > <td class="cells"><a href="#">First
    Cell</a> </td>
    >
    > </tr>
    > <tr>
    > <td class="cells">Second Cell</td>
    > </tr>
    > <tr>
    > <td class="cells">Third Cell</td>
    > </tr>
    > </table>
    >
    > </body>
    > </html>
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    >
    > rmiman wrote:
    >
    >>
    quote:
    Originally posted by:
    Newsgroup User
    >> Change your cells css style rule to
    >>
    >> .cells {
    >> text-align: center;
    >> vertical-align: middle;
    >> height: 50px;
    >> border: 1px solid #000000;
    >> }
    >> "rmiman" <[email protected]> wrote
    in message
    >> news:[email protected]...
    >> > How would I vertically center the
    First Cell link within it's
    >> own > gray background on the following page?
    >> >
    >> >
    http://www.rminc.com/test_examples/test.html
    >> When I do that the
    First Cell link still appears at the top of
    >> it's own grey background.
    >>
    >

  • CSS 'Persistent' Clarification

    Two questions:
    1. When a client establishes a persistent HTTP connection that matches a CSS content rule, will the CSS map all requests over that connection to the same service within the content rule?
    2. When a EQL is applied to a Layer 5 content rule, does just the first request get evaluated against the EQL? If so, do all additional requests over the same connection *not* match the content rule?
    Thanks,
    Zach

    Zach,
    see our ASK THE EXPERT Event.
    Please join us there if you have CSS/CSM related questions.
    REgarding your current questions,
    1/ he default is to be persistent and send all requests to the same server - you can do a 'no persistent' to loadbalance every request.
    2/ every request should be evaluated.
    Regards,
    Gilles.

  • Problems to add a background-image to the widget Spry MenuBar!

    With DreamweaverCS4 version 10.0 Build 4117, (italian language) I have tried to add a Spry MenuBar to the one website page.
    But the problem is that I haven't understood where add my property "background-image": url(../immagini/Menu_Button_01.gif).
    In the Application Page of Dreamweaver I have this screenshot:
    But in the Preview Window of InternetExplorer 7 I have this strange behavior:
    The "Menu_Button_01.gif" are a rounded square button made with PhotoshopCS4 and have a transparent background.
    In the IE7 MenuBar doesn't appears as expected, without the transparent background!
    1) How can I do to show my "Menu_Button_01.gif" image as transparent background in the MenuBar?
    2) What is the correct CSS Style Rule to apply the "background-image" property?
    (Example: "ul.MenuBarHorizontal li"? Or "ul.MenuBarHorizontal a"? )
    3) Should I also apply the property: "background-color:transparent"? Where? What is the specific CSS Style Rule?
    I have uploaded my little local WebSite to Rapidshare (100KB):
    http://rapidshare.com/files/370735082/Test_Spry.zip.html
    Please download it to inspect my problem.
    Please response me!
    Horsepower0171.

    For a starter, you should not put your background style rules in the following. The accompanying descriptions will tell you this.
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 116px;
        float: left;
        background-image: url(../immagini/Menu_Button_01.gif);
        background-color: transparent;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 116px;
        position: absolute;
        left: -1000em;
        background-image: url(../immagini/Menu_Button_01.gif);
        background-color: transparent;
    Then when you apply style rules to
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        padding: 0.5em 0.75em;
        color: #333;
        text-decoration: none;
        background-image: url(../immagini/Menu_Button_01.gif);
        background-color: transparent;
    this will be overridden by the following rules. They replace your image with an arrow image.
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    There are one of two solutions
    If you do not want and arrow, simply set background to none in the above four instances.
    If you do want an arrow, include a down arrow image in a second Menu_Button_01.gif image called Menu_Button_01_DownArrow.gif or similar as well as a third one for your right arrow image.
    I hope this helps.
    Ben

Maybe you are looking for