Style sheet cross browser issues

Hi I am having a couple of issues with a test site i am producing
The URL is above.
All works ok in I.E.8
but in IE7 the links on the header are no longer in-line causing them to dissapear from view in some cases.
And in IE6 the header size appears doubled ?? and the right hand news div drops out of line??
Probably something simple, but please advise.
Many thanks
Mark
[Subject line edited by moderator to remove URL]

Markcronin123 wrote:
Hi Nancy
http://www.epproductions.co.uk/katebellingham/
here is the link :-)
Make a backup of the page and stylesheet, ie copy them so you have an original to go back to.
What happens to the links in the header if you change the 'header' css to exactly as below. Delete ALL and I mean ALL references to any 'header' css in your current css file and replace it with the selectors below:
#header {
height: 95px;
background-image: url(header.jpg);
padding-bottom: 5px;
overflow: hidden;
#header ul {
margin: 0;
padding: 0;
#header li {
list-style-type: none;
float: right;
margin: 0;
padding: 0;
#header ul li a {
text-decoration: none;
color: #FFF;
font-size: 15px;
float: right;
padding: 70px 22px 0 0;
text-align: center;
font-weight: bold;
#header ul li a:hover {
font-size: 17px;
As for your news <div> dropping try floating it left instead of right as its a much more stable structure. If it still drops take out the innernews <div> and see if it goes back into line.
#frontnews {
    float: left;
    height: 355px;
    width: 260px;
    background-color: #FFF;
    padding: 20px;
    text-align: center;
    background-image: url(news.jpg);
    background-repeat: no-repeat;
    background-position: center center;

Similar Messages

  • Cross browser issue using ajax report pull

    Hi,
    I have an application working using ajax report pull.
    Entire application is based on ajax and its currently released.
    Its performance is good. It works fine with mozilla but in ie,
    links and buttons are not working.
    my code is as follows:
    var container = document.getElementById("divlayer");
         container.innerHTML="";
         var l_Val = document.getElementById('P15_ID').value;
         var l_Val1 = document.getElementById('P15_REGION').value;
         var l_Val2 = document.getElementById('P15_COUNTRY').value;
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,null,10);
         get.add('P15_GSI_PARTY_ID',l_Val);
         get.add('P10_ID',l_Val);
         get.add('P10_REGION',l_Val1);
         get.add('P10_COUNTRY',l_Val2);
         get.add('P10_ROWS',l_Val3);
         get.add('P15_REGION',l_Val1);
         get.add('P15_COUNTRY',l_Val2);
         get.add('P15_ROWS',l_Val3);
         gReturn = get.get(null,'<htmldb:BOX_BODY>','</htmldb:BOX_BODY>');
         get = null;
    document.getElementById("divlayer").style.visibility='visible';
    document.getElementById("divlayer").style.display='block';
    var elem = document.createElement('div');
         elem.id='d1';
    elem.innerHTML=gReturn;
         container.appendChild(elem);
    The links with doSubmit is not submitting to the same page in ie.
    Please help me.
    Thanks,
    Niveditha

    Hello Niveditha,
    There're some differences in browsers... so yes it's possible that it doesn't work with the same code in another browser. The good news is that most of time there're workaround.
    When I look at your code, you could already change document.getElementById() by $x(), which is doing the same, but comes from the APEX framework.
    Do you have an idea where it fails in IE? Are you using the Developer Toolbar? Maybe that gives you more insights. You could also put some alert('hello 1'); in your code to see what's happening and how far it comes.
    If you put it on apex.oracle.com we can have a look into more detail.
    Dimitri
    -- http://dgielis.blogspot.com
    -- http://apex-evangelists.com

  • Reg : Cross browser issue while handling LOV event on KeyFlexFeild

    Hi OA Gurus,
    We are encountering issues on R12.0.6, JDev 120Rup6.
    We have the following test case and code changes.
    Requirement:
    We have OA page where we have one KeyFlexFeild item and a normal LOV. Page items are part of one AM and LOV is in another AM.
    The requirement was to make LOV dependent on keyFlexfeild. Test case is mentioned as per following flow.
    1.     User changes cost center segment of Accounting Flex(Key flex) using Cost center LOV.
    2.     Another LOV in the same page should be dependent on new value of cost center as modified in step 1.
    Solution Implemented:
    Describing in the 3 steps
    1) Here the KeyFlexFeild is expense account. Whenever User changes any segment, we handle
    ‘lovValidate’ and ‘lovUpdate’ events on KeyFlexFeild in processFormRequest of controller.
    2) Retrieve the value of cost center segment using getSegmentsQualifiedBy(), Update corresponding VO attribute of the LOV query parameter.
    3) Forward the request to current page so that LOV will have modified value with updated query.
    4) Forwarding to current page is must because LOV is built with another AM and will loaded only when page is built.
    Issue:
    This works fine on internet explorer. When trying to run the same in Mozilla we have following issue
    1) User modifies one of the segments of expense account and make a tab – out
    2) Now the page refresh happens
    3) Now in the same page no other LOV or no other button works. He can’t click on any button for submit or cancel.
    LOVs will not open even after clicking on it.
    Code changes:
    //Step1 – Handle LOV events
    String source = pageContext.getParameter(SOURCE_PARAM);
    String eventType = pageContext.getParameter(EVENT_PARAM);
    if(source !=null && eventType != null) {
    if(source.startsWith("Acct") && eventType.equals("lovUpdate") || eventType.equals("lovValidate") ) {
    KeyFlexfield flex = (KeyFlexfield)lkff.getAttributeValue(OAWebBeanConstants.FLEXFIELD_REFERENCE);
    // Step -2 Updating the corresponding VO attribute for LOV to get the modified the value
    Segment[ ] segmentL = flex.getSegmentsQualifiedBy(FA_COST_CTR");
    CostCenterValue = segmentL[0].getValue().getValue();
    if(CostCenterValue != null ){
    sampleViewObject.getCurrentRow().setAttribute("ToCostCenter",CostCenterValue);
    OAFormValueBean formValueBean = (OAFormValueBean)webBean.findIndexedChildRecursive("ToCostCenter");
    if(formValueBean != null)
    formValueBean.setValue(pageContext, CostCenterValue);
    OAMessageLovInputBean formValueBean1 = (OAMessageLovInputBean)webBean.findIndexedChildRecursive("ReceivingApprover");
    if(formValueBean1 != null)
    formValueBean1.setValue(pageContext, null);
    else
    sampleViewObject.getCurrentRow().setAttribute("ToCostCenter",null);
    //Step 3 – Forward the request Current Page again
    pageContext.setForwardURLToCurrentPage(null, true, ADD_BREAD_CRUMB_YES, (byte)0);
    We have following questions.
    a)     Solution implemented by us is correct ? or we have to implement it in another way ?
    b)     Is OA version mentioned above supported on Mozilla browser version 3.x ? This issue is not occurring on Mozilla 1.x while running from JDev.
    Please let us know if any additional details required.
    Thanks for help in advance.
    Edited by: user774130 on Dec 15, 2009 2:27 AM

    Hi,
    It seems that you have not noticed that this forum is not for posting product-related questions/problems....
    So , this might be the correct forum....
    Java Server Pages (JSP)
    Sim

  • Cross browser issue?

    hello,
    I have a flex image app here:
    http://brandonandpatty.com/?page_id=6.
    Works fine in firefox 3.0.4 and Opera 9.27. However, there is a
    strange issue in IE and Chrome - the thumbnail images show up fine,
    but when you click one to display a larger image it gives a broken
    image link icon.
    I have no idea why the browser would have influence in how
    the flashplayer accesses remote image files, but it does in this
    case somehow. Any ideas on how to fix this issue, or has someone
    had a similar problem? Thank you in advance!

    If you enabled "View Source" it might be easier to figure
    out.
    "bmilesp" <[email protected]> wrote in
    message
    news:gh9k9l$j87$[email protected]..
    > hello,
    >
    > I have a flex image app here:
    http://brandonandpatty.com/?page_id=6.
    Works
    > fine in firefox 3.0.4 and Opera 9.27. However, there is
    a strange issue in
    > IE
    > and Chrome - the thumbnail images show up fine, but when
    you click one to
    > display a larger image it gives a broken image link
    icon.
    >
    > I have no idea why the browser would have influence in
    how the flashplayer
    > accesses remote image files, but it does in this case
    somehow. Any ideas
    > on how
    > to fix this issue, or has someone had a similar problem?
    Thank you in
    > advance!
    >

  • Css cross browser issue

    i have laid out my template using css, but notice that one of
    my columns will bump down under another one if the screen is
    resized in IE (on pc, v.6). can someone take a quick look at my
    code and css and let me know what i can do to ensure that
    everything will stay where it is supposed to be located, while
    still using width equal to a % so that it will resize with screen
    resize.
    my template can be found at: www.thedunch.com/template.html
    my css can be founds at: www.thedunch.com/css/dunch.css
    thanks in advance for any help

    If you enabled "View Source" it might be easier to figure
    out.
    "bmilesp" <[email protected]> wrote in
    message
    news:gh9k9l$j87$[email protected]..
    > hello,
    >
    > I have a flex image app here:
    http://brandonandpatty.com/?page_id=6.
    Works
    > fine in firefox 3.0.4 and Opera 9.27. However, there is
    a strange issue in
    > IE
    > and Chrome - the thumbnail images show up fine, but when
    you click one to
    > display a larger image it gives a broken image link
    icon.
    >
    > I have no idea why the browser would have influence in
    how the flashplayer
    > accesses remote image files, but it does in this case
    somehow. Any ideas
    > on how
    > to fix this issue, or has someone had a similar problem?
    Thank you in
    > advance!
    >

  • CSS Help/Cross Browser Issues

    Nevermind

    Embedding the fonts should solve that issue. You might want to make sure that the browser is not using a cached version of the project. You may have fixed it, but not seen it due to browser displaying an older copy. I will add a small version number on-screen in a corner while developing to make sure that browser is behaving correctly.
    You also might to make sure that font can be embedded. Flash Catalyst only supports TrueType and OpenType font formats.
    Hope this helps,
    Chris

  • Cross-Browser Issues

    I am having trouble with a current web site I am designing
    for a local Culligan dealer. The site, as usual, looks fine in
    Safari, however, looks a mess in Internet Explorer and Firefox.
    Here is the link:
    http://www.culliganwatertown.com
    – I would TRULY appreciate any helpful info... Thanks!

    One of the worst mistakes you can make is to build pages that
    force quirks
    mode rendering by not having a valid and complete doctype.
    Yours is doing
    that -
    <html>
    <head>
    You should add this doctype to your page -
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    The next worst mistake you can make is to build your layout
    in a single
    table with oodles of colspans and rowspans. Since you have
    used ImageReady
    to write your HTML, this is exactly what you have got -
    <!-- ImageReady Slices (index.jpg) -->
    I'm afraid that there is not an easy answer for you there.
    But before you
    start rebuilding, read this -
    http://apptools.com/rants/spans.php
    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
    ==================
    "RachStG" <[email protected]> wrote in
    message
    news:fmlvoc$h6s$[email protected]..
    >I am having trouble with a current web site I am
    designing for a local
    >Culligan
    > dealer. The site, as usual, looks fine in Safari,
    however, looks a mess in
    > Internet Explorer and Firefox. Here is the link:
    >
    http://www.culliganwatertown.com
    ? I would TRULY appreciate any helpful
    > info...
    > Thanks!
    >

  • What do I have to do to get WebHelp browser styles to match RH's style sheet?

    What do I have to do to get WebHelp browser styles to match RH's style sheet?
    In the PDF rendering, the styles conform to the .css styles, but the generated WebHelp in the browsers (Firefox and IE) does not.
    I've check all the generated project's topic folders for the correct .css, and they're there. I also put a copy of the .css in the project's root folder as someone suggested, but that doesn't work.
    I'm using RH 10, and I'm certainly no expert at it or HTML. Forgive me if I've done something stupid or not done something I should have.
    Thanks.
    B.

    Willam,
    No. Every style but on in the style sheet that I created is mapped correctly to the project. All style settings except margins and font appear correctly in the webHelp. Also, if generated as a PDF or as .chm help, ALL styles render correctly. They just don't appear correctly for WebHelp (haven't tried any of the other HTML-realated project formats.)
    This appears to be a problem with the default font, which apparently cannot be changed in RH.
    Unless there's some sort of work-around, it appears that my problem is that I didn't map the source FrameMaker "normal" font to a font style OTHER THAN the default style, and under a different name, when I imported the FM file. I made the unwarranted assumptions that the RH default font would be whatever was the default font in FM, and if it wasn't, I could change it.
    I've looked all over the "communities" and Adobe help, but I can't find anywhere where the default font can be changed after a project is created.
    Thanks for keeping with me on this.

  • Style sheet issue

    Hi Friends,
    I want to Broadcast a webtemplate by Email.. I used Independent HTML output functions... it didnot work properly.. that means it worked separately without combined the style sheets.. and I used the Style sheets coding directly in the HTML tag, it worked correctly... I could not know why it was happened....
    that means a reference link did not work, the coding where in the reference link's path is worked well...
    now I need how to broadcast the webtemplate by Email using the reference link
    <link href="/sap/bw/Mime/BEx/StyleSheets/Chrome_BWReports_ie6.css" rel="stylesheet" type="text/css"/>
    guide and help me....
    Thanks in Advance,
    Jaya

    Hi,
    Since you are planning to send it via email, I would suggest that you use the full URL. Please note that the one you have used is a Relative URL path.
    <link href="/sap/bw/Mime/BEx/StyleSheets/Chrome_BWReports_ie6.css" rel="stylesheet" type="text/css"/>
    Full URL path will look something like
    <link href="http://mySAPServer.com/sap/bw/Mime/BEx/StyleSheets/Chrome_BWReports_ie6.css" rel="stylesheet" type="text/css"/>
    where mySAPServer.com is your SAP Web Server address.
    Also the path might be case sensitive. So take care of that.
    Using the full URL path will solve your problem.
    Only issue is that, if you are using full URL, you have to update the server address in your templates in Dev/Qual/Prod to reflect the correct web server address
    Regards
    Anujit Ghosh

  • Style sheete issue

    I'm having a small issue with div tags in on my jsp. Has anyone seen this or can anyone tell me what is wrong.
    I just have two div tags in my style sheet as follows.
    .OmniIframeWrapper
         background-color:#F2F0E6;          
         width:98%;
         overflow:auto;
         border:1px solid black;
    .OmniIframeContent
         background-color:#F2F0E6;
         width:100%;
         margin:5px;
         padding: 5px;
    }then I nest those on my jsp to create a scrolling area for my data. In IE this works just fine. But in firefox the bottom scrollbar is always on. Even if the content of the inner div tag is only an empty table.
    <DIV class="OmniIframeWrapper" style="height: 450">
              <DIV class="OmniIframeContent"><table><tr><td>test data</td></tr></table></DIV>
              </DIV>

    I've change the size of the inner div tag to 99% instead of 100% . This does fix the problem.. but I don't like the fact that FF handles it the way it does.

  • Issue in using cascading style sheet(CSS) in coldfusion

    I have installed coldfusion in my machine recently. The thing
    is that my cfm files are not recognising the classes of the linked
    style sheets though I have given the correct path of the location
    of css file. Also it couldn't recognise <img src=""> tag to
    display an image.
    Please help me out to solve this issue.

    > I have installed coldfusion in my machine recently. The
    thing is that my cfm
    > files are not recognising the classes of the linked
    style sheets though I have
    CFM files are disinteresting in HTML, CSS classes and links
    and that sort
    of carry-on. It's all just "noise" to CF. So your CFM
    template cannot, in
    and off itself, cause problems with your CSS stuff.
    What you need to do is to look at the generated HTML and see
    what you're
    doing wrong. I imagine you've got the URLs wrong. Bear in
    mind that LINK
    URLs are indeed URLs, and if you're using relative ones, they
    should be
    relative to the URL of the request, and have no bearing on
    the file
    location of the CFM file they are represented in. This is a
    common mistake
    nebies make.
    Adam

  • Cross Browser/OS issue?

    Hi there,
    This website belongs to our school project and we are getting reports from the teacher assistance and the professor that the website is not funcationing properly. They are saying the menu on the bottom of the page is not showing so they cant navigate the site.
    http://tvbw.businesscatalyst.com/
    Can someone direct me on how we can solve this issue? I have done cross browser check and on some site it doesnt show while on other site they are showing the menu!
    Thank you for your help in advanced.

    that fixed the issue...which is weird since i was getting response from freind with both mac or windows tell me different things...

  • RH8: Style Sheets Issue

    I inherited an RH8 project from another writer and now I'm trying to make some sense out of it.
    My latest issue:
    When I expand the Style Sheets folder in the Project Manager pod, there are 2 CSS files plus about 15 subfolders. The folders seem to have the names of some of the books in the TOC, but delimited with underscores. Also, there are obviously many more books in the TOC than subfolders in the Style Sheets folder.
    When I right-click one of the subfolders and select Explore, they all contain image files and one FPJ file. Each FPJ contains only:
    <?xml version="1.0" encoding="utf-8"?>
    <rhpml majorversion="3" minorversion="0">
    </rhpml>
    Further, the image filenames are sequential (such as image002.gif, image003.gif, and so on) and they repeat in the different subfolders. But image002 in one subfolder is a different image than image002 in another subfolder.
    Any ideas what's going on here? Thanks in advance.

    They are "real" folders because I can acess them in Windows Explorer.
    If I right-click on the folders in the Project Manager, one of the following occurs:
    The Delete option is disabled.
    The Delete option is enabled. But when I select it, I get a confirmation message that the folder and all contents will be deleted. I can click OK and it's deleted.
    The Delete option is enabled. But when I select it, the folder is deleted without the confirmation message.
    If these are "man-made" folders, can I safely delete them?

  • Safari issue with cascading style sheets

    I've been using the beta version of Safari 4.0 for weeks with no problems. Now the final version seems to have totally messed up what appears to be cascading style sheets on my blog. My blog looks perfectly fine on other browsers as well as on the old beta version I have on my tower so I know it is not me. Has anyone else noticed this?

    Thanks for that. Can you post a screenshot to show us what you see? I can see the site at the moment, but I've no idea if that is what you see as well or not
    Image hosting sites such as www.imageshack.us are good for uploading the image to. After that, you can post a URL of the image from there to here.

  • 11g Custom.CSS Style Sheet issue...is it a bug?

    I've created a custom style sheet that we're using to change the graphical elements of our dashboard. I've got everything working and I'm really pleased about how it's looking. Today, I started working on changing the default field attributes. I didn't want to have to go in and change 7-8 elements (font, size, bold, etc) so I used the Custom.CSS file and created new CSS classes that I could easily assign to fields. My thought was that I could go through my whole web-catalog once and apply the CSS to each of the fields, their headers, etc. so that if we wanted to make global changes to formatting later on, I could go and edit the Custom.CSS.
    I've run into a slight problem which brings me to the purpose of this post. I have saved the CSS classes into the fields, applied them and saved the changes as the defaults for the fields. Everything works great and the CSS defined styles appear when I create a new report. My concern is that when I create a new report and pull in one of the fields that I have defined and saved the default style, the field no longer shows that it's definition is linked to the Custom.CSS. If I hover over a field in Firebug, it tells me that it's referencing the Custom.CSS, so I know the field is actively referencing the CSS. Shouldn't the field retain the reference to the Custom.CSS when I save the style? Any other developer going into the field will not be able to tell that there is a style sheet that defines the field attributes.
    Also, is there a better way to go about applying styling to fields across the board?

    Hi Brad
    The changes to the file is not done outside of Muse, I know by touching Muse's files from BC will screw things up,
    rather it is done from Muse itself by going to the page properties and entering an html code in the header of the page.
    Also maybe I should'nt said Locally Published, I meant when exporting the html and viewing it locally.
    Regards

Maybe you are looking for

  • HT204266 My App Store Icon disappeared from my phone so how do I get it back?

    My App Store icon has disappeared from my iPhone 4 screen.  How do I get it back?

  • PO falls under approval

    hi we recently changed the approval matrix leve ever since i noticed if  i reduced line item on po to lower than what it is po goes out of approval  what causes this before it only required when po amt increased thank you ash

  • Update to 10.8.4 asks reboot after reboot

    I run a MBP 13" on 10.8.3 and tried to update to 10.8.4 yesterday. The App Store download seemed to stop after ca. 10% but with no error message and just asked me for the expected reboot. So I did the reboot, the Mac comes back fine but surprisingly

  • Recordset paging question

    I need to display many records, and I will acheive this by using the recordset paging features, but I have content above my list that I only want visible on the first page. Is there a way to remove the surplus content on subsequent pages? If so, how?

  • Eve online + wine [SOLVED]

    I have eve running under wine, the only problem is I want to run two clients in windowed mode.  I set wine to run in desktop mode and set the resolution so that I get a nice windowed eve client. Now, when I run a second instance of eve, wine opens it