CONTENT_COMPRESSION and CSS problem

Hi all
I'm using JDeveloper 11.1.2.1 and I am trying to conditionally format table row when row is selected or hovered.
When web.xml context param org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION is set to true my css is applyed as expected, but when I enable content compression my css doesn't work.
Here is my css code:
af|table::data-row:selected af|column::data-cell.SpecialRow,
af|table::data-row:selected:hover af|column::data-cell.SpecialRow{
    background-color: #ff8383;
af|table::data-row:hover af|column::data-cell.SpecialRow{
    background-color: #ffa5a5;
}SpecialRow css class is set on every column in my table.
What am I doing wrong?
Is there another way to apply different css for different selected or hovered rows?
Thanks in advance.

Specify the styleClass as below:
.SpecialTable af|table::data-row:selected af|column::data-cell {
    background-color: #ff8383;
.SpecialTable af|table::data-row:selected:hover af|column::data-cell {
    background-color: #ff8383;
.SpecialTable af|table::data-row:hover af|column::data-cell {
    background-color: #ffa5a5;
}Use this named class for the table (not for the column) as below:
         <af:table value="#{bindings.Departments.collectionModel}" var="row"
                          rows="#{bindings.Departments.rangeSize}" styleClass="SpecialTable"
                          emptyText="#{bindings.Departments.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.Departments.rangeSize}" rowBandingInterval="0"
                          selectedRowKeys="#{bindings.Departments.collectionModel.selectedRow}"
                          selectionListener="#{bindings.Departments.collectionModel.makeCurrent}" rowSelection="single"
                          id="t1">
                    <af:column sortProperty="#{bindings.Departments.hints.DepartmentId.name}" sortable="false"
                               headerText="#{bindings.Departments.hints.DepartmentId.label}" id="c1">
                        <af:outputText value="#{row.DepartmentId}" id="ot1">
                            <af:convertNumber groupingUsed="false"
                                              pattern="#{bindings.Departments.hints.DepartmentId.format}"/>
                        </af:outputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.Departments.hints.DepartmentName.name}" sortable="false"
                               headerText="#{bindings.Departments.hints.DepartmentName.label}" id="c2">
                        <af:outputText value="#{row.DepartmentName}" id="ot2"/>
                    </af:column>
                </af:table>Thanks,
Navaneeth

Similar Messages

  • Windows 8 and CSS problems (FF 16 & 17)

    I just got a brand spanking new Win 8 computer (intl English). The only things installed on it are Adobe Master's Collection, Steam, Office and Firefox. In addition I tried installing adblocker, because that's a must for me and if this problem is resolved by removing it I will have to switch to another browser.
    Now, the problem is that FF is having problems loading pages with CSS. Occasionally, this results in a pages with nothing at all (except background color, it seems) or with just unformatted text. Most of the time this is fixed by doing a shift+reload, but not always. Some times it's just partially fixed and some elements don't load still.
    I've tried disabling all extensions and plugins and I've also tried resetting FF. The problem always comes back. I've even tried resetting my hosts file.
    Do you have any more ways of fixing it? I believe I've done everything in my power, except change browsers (which I really don't want to do unless it's my only option).
    The only thing I haven't tried, which I'll try now, is unpin all my app tabs and see if that fixes anything. I'll update this if I can...
    Pages affected: Facebook (some of the time), Couch Potato (installed on my server - never seen this on other computers or even other browsers on my computer, always), MyFitnessPal (occasionally), and some low-tech dating page I'm on.
    Cheers,
    Lars

    So, it still happens with a new an clean profile without extensions?
    In that case you may have security software (firewall, anti-virus) that block some content.
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    You can also try to use the Web Console (Web Developer > Web Console;Ctrl+Shift+K) to see if you can identify network related issues.
    *https://developer.mozilla.org/en/Tools/Web_Console
    *https://developer.mozilla.org/en/Using_the_Web_Console

  • H:panelGrid and css problem?

    Hi,
    I have following piece of code:
    <h:panelGrid columns="3" columnClasses="columnHeader,oddRow,evenRow" rowClasses="oddRow, evenRow" styleClass="tableSettings">
         <h:outputLabel for="accountName">
              <h:outputText value="Account Name"/>
         </h:outputLabel>
         <h:inputText id="accountName" value="#{Edit.accountName}" required="true"/>
         <h:message for="accountName" styleClass="errorText"/>
         <h:outputLabel for="accountDescription">
             <h:outputText value="Account Description"/>
         </h:outputLabel>
         <h:inputText id="accountDescription" value="#{Edit.accountDescription}" required="true"/>
         <h:message  for="accountDescription"  styleClass="errorText"/>
         <h:outputLabel  for="accountTypeName">
             <h:outputText value="Account Type Name"/>
         </h:outputLabel>
         <h:inputText id="accountTypeName" value="#{Edit.accountTypeName}" required="true"/>
         <h:message for="accountTypeName" styleClass="errorText"/>
    </h:panelGrid>
    <br/>
    <h:commandButton id="clearAccount" action="clearAccount" value="Clear" actionListener="#{Edit.clear}"/> <!--  -->
    <h:commandButton id="sendAccountInformation" action="#{Edit.sendMessage}" value="Send"/>
    <br/>
    <h:commandLink id="goToAllAccounts" action="goToAllAccounts" value="All Accounts" />In my css file I have .classHeader, .oddRow, .evenRow and a and a:hover classes:
    .tableSettings {
         border: solid #000000 1px;
         width: 100%;
    .columnHeader {
        text-align: center;
        nowrap: true;
        background-color:"#000000";
        color:"#FFFFFF";
    .oddRow {
        background-color: "#E0E0E0";
    .evenRow {
        background-color: white;
    .errorMessage {
         color : #FF0000;
         font-weight: bolder;
    a {
         text-decoration: none;
         color: #337799;
         font-weight: bolder;
    a:hover {
         text-decoration:underline;
         color: #abcdef; /*FF5555*/
         font-weight: bolder;
    }And problem I have is that link at the bottom is rendered correctly (and when it is hovered it changes color), but panelGrid is missing almost all styles, only border of the table is present. I've already tried removing columnClasses and rowClasses...
    Does anybody know where can be a problem?
    Regards,
    morhen

    Found the problem. At the beginning of my *.jsp document I had:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">when I deleted
    "http://www.w3.org/TR/html4/loose.dtd"styles appeared, but I don't know why... interesting...

  • @ResourceDependency and css problems

    I was trying the create a jquery-ui datepicker as a JSF2 component, and I used @ResourceDependencies and @ResourceDependency to add jquery and jquery-ui scripts and jquery-ui css. Everything worked fine (almost) but the images used by jquery-ui datepicker didn't. My browser simply couldn't load any image referenced by jquery-ui.css. Any tip?

    Yellowbike wrote:
    I was trying the create a jquery-ui datepicker as a JSF2 component, and I used @ResourceDependencies and @ResourceDependency to add jquery and jquery-ui scripts and jquery-ui css. Everything worked fine (almost) but the images used by jquery-ui datepicker didn't. My browser simply couldn't load any image referenced by jquery-ui.css. Any tip?I had the same problem when wrapping the YUI components. The server can't find the images because they're in a jar (or in WEB-INF/classes), so you need to override the image classes in such a way as to create a link JSF can use to load the image from the classpath. For example (from http://kenai.com/projects/scales/sources/mercurial/content/main/src/main/resources/META-INF/resources/scales/css/overrides-calendar.css?rev=447):
    .yui-skin-sam .yui-calcontainer .title {background-image:url(#{resource['yui/assets/skins/sam/sprite.png']});}
    Those image is found at META-INF/resources/'yui/assets/skins/sam/sprite.png in my jar (along with several others).

  • Sitemesh and css problem

    Hi. I want to use SiteMesh to decorate various pages (jsp, html). I have a decorator, but i can't seem to link a css sheet to my pages.
    I have decorators.xml in /WEB-INF/
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <decorators defaultdir="/WEB-INF/decorators">
    <decorator name="main" page="main.jsp">
    <pattern>/*</pattern>
    </decorator>
    </decorators>
    I have main.jsp in /WEB-INF/decorators/
    <%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemeshdecorator" %>
    <head>
    <title>
    <decorator:title default="Java Tutorial" />
    </title>
    <link href="*/decorators/main.css*" rel="stylesheet" type="text/css"> //here I also tried href="<%= request.getContextPath() %>/decorators/main.css", but it //also does'n work
    <decorator:head />
    <body>
    <decorator:body />
    </body>
    </html>
    and I have main.css in /WEB-INF/decorators/
    but when I run the application it displays everything except for the stylesheet elements. Any idea what I'm doing wrong?

    Another thing to check is the path to the CSS file which is finally generated to the HTML source. Do you understand how to read/interpret relative paths? In your <link> element for the CSS file you've a leading slash which would lead to the domain root. Which may be wrong if your webapp is deployed with a non-empty context root.
    E.g.
    page.jsp absolute URL = http://domain.com/contextroot/page.jsp
    main.css relative URL = /decorators/main.css
    Thus its absolute URL is http://domain.com/decorators/main.css which may not exist.
    Maybe it is actually located at http://domain.com/contextroot/decorators/main.css, test it and see if it gives the CSS or a 404.
    If that works, you need to remove the leading slash from the relative URL, so that it becomes relative to the root of the requested JSP page, which is http://domain.com/contextroot.

  • Javahelp and css problem

    I haven't been able to get image bullets to work in JavaHelp with css .
    " I believe it's because the "url" attribute is not part of the HTML 3.2
    specification. I hope I'm wrong, I'd like to be able to use bullets"
    example
    body{
    background-image: url("fondo.gif");
    this don't work in javahelp but yes in firefox

    I haven't been able to get image bullets to work in JavaHelp with css .
    " I believe it's because the "url" attribute is not part of the HTML 3.2
    specification. I hope I'm wrong, I'd like to be able to use bullets"

  • Css and RequestDispatcher problem

    I'm using JBoss + embedded Tomcat (not using apache
    yet in development).
    I have problem with JSP and css. My JSP includes css
    with this tag:
    <link rel="stylesheet" href="style.css" type="text/css">If I access the JSP directly from web-browser IE5
    to http://127.0.0.1:8080/myContext/fileName.jsp ,
    it's displayed correctly.
    However, if I let a servlet dispatch the JSP, the css didn't
    included somehow (browser displayed the JSP without css-formatting).
    RequestDispatcher dispatcher = getServletContext().
                             getRequestDispatcher("/fileName.jsp");
        if (dispatcher != null)
            dispatcher.forward(request, response);
        /* ... */I put css and JSP in the same subdir. Is this a Tomcat error, or
    I forgot to set something in the request object, or
    I need to append something to "/fileName.jsp"?
    Thanks in advance.
    Verdi

    Unfortunately, the solution I found was to "hardcode" the absolute path. For example:<link rel="stylesheet" href="<%= request.getContextPath() %>/style.css" type="text/css">There're another way I think may preserve the context
    path, that is to use response.sendRedirect. Problem with
    this approach is however, you can't embedd javabean
    as "attribute" cause attribute will be removed in the new request (of redirected jsp).
    -- Verdi March --

  • Outlook HTML and CSS Validator Problem

    Hi,
    I downloaded this
    Outlook
    HTML and CSS Validator for DreamWeaver 8
    (WordMailSupportMacromedia.msi) but when I
    followed
    the instructions and went to the Browser Check settings,
    "Microsoft Word" did not show up in the Target Browsers list.
    Anyone know why or have a fix?
    Thanks much!

    FederalWayDave wrote:
    > Hi,
    >
    > I downloaded this
    >
    http://www.microsoft.com/downloads/details.aspx?familyid=0b764c08-0f86-431e-8bd5
    > -ef0e9ce26a3a&displaylang=en for DreamWeaver 8
    (WordMailSupportMacromedia.msi)
    > but when I
    >
    http://msdn2.microsoft.com/en-us/library/aa338200.aspx#Word2007MailHTMLandCSS2_D
    > reamweaver]followed the instructions and went to the
    Browser Check settings,
    > "Microsoft Word" did not show up in the Target Browsers
    list.
    >
    > Anyone know why or have a fix?
    >
    > Thanks much!
    >
    you can open your html pages FROM Microsoft Word.
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • How to  include external javascript and css resources to a jsf?

    I need to include external css and javascript files to my jsf page. Using the code below does not work because all the styles on the css page are ignored and the functions within the js files are not executed.
    <link rel="stylesheet" type="text/css" href="/resources/styles/style.css" />
    <script language="JavaScript" src="/resources/javascript/util.js"></script>When I try to execute any js function within a script tag on a jsf page I get an object expected error.
    I googled about my problem and found this piece of code for importing styles for an external css.
    <style type="text/css">
    @import url("/resources/styles/style.css");
    </style>How could I add an external javascript file to my jsf?

    Used the relative urls in my first post as well as these, and both were not working.
    <link rel="stylesheet" type="text/css" href="./resources/styles/style.css" />
    <script language="JavaScript" src="./resources/javascript/util.js"></script>The ./ tells that the external file can be found by starting at the current directory and working down the path to the specified file. This is my directory structure. Index.jsf is the file that references the external js and css files.
    -Webcontent
    |_index.jsf
    |_resources
    |__styles
    | |__style.css
    |__javascript
    |__util.js
    Either way I still can't reference the files that I need. Calling a javascript function results in an object expected error, and the styles are ignored.
    If I include the js file directly in the jsf then I can get it to work. I don't want to do this because I have created a handful of seperate js files, and do not want to include all of them in one page. I am using myfaces and tomahawk if that helps.

  • Upgrade from 2.2.1 to 3.1.2: Breaks JS and CSS?

    Upgraded from 2.2.1 to 3.1.2. The upgrade went fine but most JS and CSS seems to be broken.
    Examples
    1. Javascript functions not defined: redirect, html_ShowElement
    2. Template button images are broken. See http://i41.tinypic.com/294pgso.jpg
    My page templates are mostly unchanged, i.e. they have stuff like
    #HEAD#
    <title>#TITLE#</title>
    <link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_10/theme_V2.css" type="text/css" />
    This seems to be generating the following HTML
    <script src="/i/javascript/htmldb_html_elements.js" type="text/javascript"></script>
    <script src="/i/javascript/htmldb_get.js" type="text/javascript"></script>
    < link rel="stylesheet" href="/i/css/core_V22.css" type="text/css" />
    < ! -- [ if IE]><link rel="stylesheet" href="/i/css/core_ie_V22.css" type="text/css" /><![endif]-->
    < link rel="stylesheet" href="/i/themes/theme_10/theme_V2.css" type="text/css" />
    Version 3.1.2 seems to have changed stuff around. I tried creating symbolic links from htmldb_html_elements.js -> apex_3_1.js and htmldb_get.js -> apex_get_3_1.js and this got me past the Undefined errors but now I get 'apex is not defined'.
    Is there a quick way to upgrade all the applications to the new way of doing things? I am not looking forward to modifying all my page templates!
    Help!
    Thanks

    Sorry, my fault, my database got refreshed from one containing Apex v 2.2.1 without my knowledge and the OHS images folder was still pointing to the that from the 3.1.2 distribution. This was causing the problem. When I upgraded Apex to v3.1.2 again, everything is back to normal.
    The #HEAD# substitution string in my page templates automatically pulls in the appropriate JS/CSS libraries
    <script src="/i/javascript/apex_ns_3_1.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_3_1.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_get_3_1.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_builder.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/apex_3_1.css" type="text/css" />
    < ! -- [ if IE ]><link rel="stylesheet" href="/i/css/apex_ie_3_1.css" type="text/css" /><![endif]-->
    <link rel="stylesheet" href="/i/themes/theme_10/theme_V2.css" type="text/css" />
    Sorry for the false alarm
    Thanks

  • Java Swing/AWT and FX is so old school! Give me HTML and CSS for GUI!

    Dear Java,
    I am a seasoned programmer and I feel it's time JAVA implements a GUI system where it uses HTML and CSS for the GUI. For the love of god just look at the interfaces you can make using HTML and CSS alone. I am a big fan of Java Swing and the recent GUI designer for FX is quite cool. But they are just not as simple as HTML and CSS. And JavaFX has some interesting requirements for the graphics.
    I know it is possible to use JavaFX and implement the WebView/WebDriver and make it load a HTML page, etc... but why go through all the trouble?
    Just imagine... if you make Java where it has powerful back-end to do what it does best and the HTML/CSS powered GUI on the front-end. It will make the lives of many developers much much easier.
    I am not sure whether a Swing designed GUI will be faster than a HTML designed GUI... but if you look at a traditional browser and how fast it renders HTML/CSS, I am sure if Java had a native Form where it uses HTML and CSS to render the GUI, Java will make the dreams of many programmers a reality.
    Make it happen!!!!

    Check this i solve problem just now using this
    https://wiki.archlinux.org/index.php/Ja … ow_Manager

  • Pdf  document on  custom template and CSS

    There was a small pdf document on CSS and templates in the turial section of APEX. Anyone know where is this?
    George

    Raizel wrote:
    > In article <e4ovcd$eei$[email protected]>,
    > "billugs" <[email protected]> wrote:
    >
    >> It seems that my template and css style are still
    not showing up on my page,
    >> I
    >> uploaded both and I am out of ideas. Does anyone see
    a problem that I can
    >> fix?
    >> <a target=_blank class=ftalternatingbarlinklarge
    >> href="
    http://www.personalizedspanish.com">http://www.personalizedspanish.com</
    >> a>
    >
    > Can't help but ask -- why do you post your URLs as <a
    target=_blank
    > class=ftalternatingbarlinklarge
    >> href="
    http://www.personalizedspanish.com">http://www.personalizedspanish.com</
    >> a>
    >
    > instead of just the URL?
    Raizel: it's a problem with the forum and how stuff from
    there gets
    posted to the newsgroup. Per a recent post by Murray, the
    Adobe team
    are working on the problem. It's driving us all crazy.
    Bonnie in California
    kroko at
    pixelplum dot com
    http://www.theanimalrescuesite.com/cgi-bin/WebObjects/CTDSites.woa

  • Css problem in internet explorer

    Hi to all!
    On my page as part of the page template I have build in a little drop-down user panel on the left top of the page.
    html:<div id="userpanel">
      <span><img src="'#APP_IMAGES#openSlidedown.png" /> <a>logon: &APP_USER.</a>
      <div id="userpanel_hsreg"><p>Autorisiert für: &APP_CODES_DISP.</p>
      <p>| #NAVIGATION_BAR#</p>
      </div></span>
    </div>css:#userpanel,
    #userpanel * {
            position:relative;
         font-family:verdana; font-size:12px;
         margin:0; padding:1px; border:0;
         white-space:nowrap;
    #userpanel a,
    #userpanel span { display:inline-block; }
    #userpanel>span>a { color:#999; }
    #userpanel span:hover div { display:block; }
    #userpanel>span:hover > a { color:black; }
    #userpanel_hsreg {
              display:none;
              position:absolute;
              left:+5px;
              top:+24px;
              background:#fff;
              padding:10px 18px;
              line-height:180%;
              border:1px solid silver;
              border-radius: 6px;
              box-shadow:1px 2px 5px #aaa;
              z-index:99;
    #userpanel>span>a {
              border-bottom:1px solid silver;
              margin-top: 5px;
              }So what happens is this: if the user hovers over the "+logon: username+", a little box pops up with some further information (the item &APP_CODES_DISP.) and the logout-link. Below this link, the Navigation bar starts. So while the box pops up, it covers a part of the region below, what its meant to do.
    The promlem is, that this doesnt work in Internet Explorer properly, when its launched from apex. Instead, the popup-box is displayed behind the region below. In Mozilla, as always, everything worls fine. This problem ocured already, when I opened the html-file from desktop, but I fixed that by putting the z-index-attribute in. Only now, in Apex, its still now working in IE. I am not that of an expert in css. I have tried different XHTML declarations in the header, all no difference.
    The current one:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">This might be a bit of a tricky issue, so I dearly hope, someone can help me. (Similar problem like the other threat I started recently here where the round-corner attribute is not working in IE-Apex, but this time its a bit more vital. :) )
    I have v 4.0.2.
    Thanks and greetings,
    tobi

    Hi again!
    This turns out not to be an APEX-issue, as I tought first, but rather a css-problem. Maybe therefore I'm in the wrong forum, but maybe someone can help me anyway.
    I have created two pages with the relevant element: (login with test/test please) one page with standard tabs and another with my own html-navigation. Now Internet Explorer has the option "Compatibility View" which in our company is activated by default. On page 1 it makes no difference, but on the second, with Compatibility View on, the drop-down box apeares behind my selfimplemented navigation bar. WHY IN GODS NAME DOES THIS HAPPEN??
    I have posted the same question in a german web-developer forum (here) also, because its quite urgent that I solve this, and as I mentioned above, many colleagues work with IE.
    So if anyone here is a css-IE9-expert... :)
    Thanks and best regards,
    Tobi
    edit: ok, its solved. The userpanel-div needed a "z-index:1;" attribute for IE. :)
    Edited by: tpetri on 03.09.2012 09:53

  • FW 8 popup-menu in CSS problem with IE7 & Safari

    Hi,
    hope that anyone out there got some ideas in my issue. I was
    already searching the forum for advice, but couldn't find
    meaningful infos.
    Here is my problem:
    I designed a page in FW8 (Mac) with a nice popup-menu. I
    exported this thing into DW8 having set the option to export the
    menu as CSS and slices to layers. Then I rearranged the html File
    and included some editable regions, as it was to be used as an
    template.
    Everything works fine in Firefox but IE7 and Safari
    experience some problems.
    The popup-layers are displayed behind the main text-area and
    not in front of it - this makes navigation a bit complicated.
    So teh menu is displayed with text and everything, but behind
    the main text.
    What I tried:
    I tried to reset the z-Index of the popup-layers to values
    below 10 (were set to 500) - didn't help.
    I gave every single item a z-index - didn't help.
    I gave the main text area an z-index of 0 or -1 - made the
    layer disappear.
    I reexported the whole thing - made me just crazy.
    I worked through the css file for errors - maybe I'm not to
    good in CSS ;)
    I checked the forums, but could only find issues where the
    menu was not displayed at all or the text was missing - doesn't
    apply.
    -- no more ideas :(
    Link to my page:
    Website
    Link
    I really appreciate your help! Any comments welcome!
    patrick

    > I think it's a bug with ie7. It doesn't support
    javascript completely,
    > nor
    > does it css.
    I don't think this is accurate. Each browser supports things
    differently,
    and CSS is no exception, but support for javascript is fairly
    reliable
    across the board.
    > but I can't find one that I can use my own images, yet
    Then you are not looking in the right place. Go here -
    http://www.projectseven.com/
    and examine their extensive collection of menu products.
    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
    ==================
    "udigrudi" <[email protected]> wrote in
    message
    news:ful3t7$n9u$[email protected]..
    > I've had a similar problem, menus made in Fireworks 8
    don't show up
    > completely
    > in ie7 for windows either. The menu shows up, but the
    text of submenus
    > with
    > submenus doesn't show up.
    >
    > I think it's a bug with ie7. It doesn't support
    javascript completely,
    > nor
    > does it css.
    >
    > Since your website has disappeared, I'm sorry I can't be
    of more help.
    > I'm
    > thinking of getting a "third party" submenu generator
    (but I can't find
    > one
    > that I can use my own images, yet)
    >

  • CSS problem-not rendering correctly in IE

    Hi Group,
    I'm relatively new to using CSS in my web sites, and have a
    question concerning a site that I'm having a problem with.
    The site is <
    http://lennyhirsh.com/> and
    the problems I'm having are with the top navigation 'rollovers' and
    the inline navigation at the bottom of each page. On Firefox and
    Safari, the site renders fine, and both the CSS rollovers and the
    bottom navigation are rendered right.
    However, I just looked at the site on Windows IE 5.5, and the
    top rollovers are cut off and the bottom navigation is showing
    vertically, instead of horizontally.
    If anyone might have a few moments to take a look and offer
    some guidance, it would be greatly appreciated.
    Thanks so much!

    First off, you might like to check your page in a validator?
    I saw this in your code:
    <h1>Design Freedom – Universal Choice<h1/>
    It's wrong and it might cause some layout anomolies. It should be:
    <h1>Design Freedom – Universal Choice</h1>
    I don't think it's the only place it's happening.
    I only looked at the first site.
    Martin

Maybe you are looking for

  • HP G6000 Overheatin​g

    Hi, I have a two year old HP G6000 that's been getting steadily hotter. I opened it up last week to replace the thermal gel and clear out the dust - but it's still hot! I've checked and the battery's not on the recall list, Speedfan gives me these te

  • 2504 WLC future LAG support?

    We just bought a 2504 WLC with 15 AP licenses for our new eight 1141N AP installation.  Some confusion about LAG support for these now confirmed by TAC that LAG NOT supported for the time being.  Has anyone heard about whether this feature will be ad

  • [solved] Broken ping

    Hi all, a recent update seems to have caused the "ping" binary to misbehave. Pinging a known good server on a known network now causes the time interval between each ping  (after typing "ping google.com") to become sporadic and random. I have two ser

  • On deploy a prefix is add

    Hello: Tools --> Options -->Compiler  I set <b>com.company.project</b>. The IView 's name is: <u>Viernes</u> but when I deploy and run the IView the URL is complete with some numbers and letters: http://host/irj/servlet/prt/portal/prtroot/com.sap.por

  • Another CS2 question...

    How can I change the default program that Lightroom points to? It's wanting to open my LR image in CS3, but I only have the trial version of CS3 (which of course is expired). I can not find in the preferences where I can point Lightroom to open my im