It must be in the CSS

I have a page http://ebogott.com/index08more.php that is the prototype new home page for my site. The "last updated..." line appers to the right of the XML table ONLY in OPERA.  Everywhere else, it aligns correctly.  I can find no code problems.  The css is attached. Does Opera have an issue with XML or CSS or did I do something wrong? 
don Carlos

I'm finding a few code issues with your site when running through the validator:
http://validator.w3.org/
You are missing one ending div tag in there and the type for the javascript.  The spry stuff you can ignore.

Similar Messages

  • Would the CSS style set to a parent node be inherited to underlying nodes?

    Hi,
    Would the CSS style set to a parent node be inherited to underlying nodes?
    With below code, style setting to parent(VBox) is not getting inherited to children(Text).
    Style.java
    package style;
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    public class Style extends Application {
        public static void main(String[] args) {
            Application.launch(Style.class, args);
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello World");
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250, Color.LIGHTGREEN);
            scene.getStylesheets().add("/style/style1.css");
            // Create children
            Text text1 = new Text("Text1");
            Text text2 = new Text("Text2");
            // Create parent and set style
            VBox vBox = new VBox();
            vBox.getChildren().addAll(text1, text2);
            vBox.getStyleClass().add("font-normal");
            root.getChildren().add(vBox);       
            primaryStage.setScene(scene);
            primaryStage.setVisible(true);
    }Style1.css
    .font-normal {
        -fx-font-size: 9pt;
        -fx-font-family: "Arial";
        -fx-fill: #FF0000;
    }Edited by: Simosh on Jun 10, 2011 4:24 PM

    Hello Simosh,
    I know you are thinking of VBox as container so their children must have inherited the css of parent like as of HTML <div> pattern. But in JavaFx this is different every node has it's CSS implemented from the Parent of their extended class . Even if you add children inside VBox CSS has nothing to do with children. So to make children to use the css of VBox then you must call getStyleClass().add() explicitly for every children.
    Either you call getStyleClass() for every node
    or you can make a custom Container as on below
    A sample getChildren() overriding of VBox which make VBox children to use their parent css.
    Algorithm to make your custom VBox
    class MyBox extends VBox{
         @Override public ObservableList<Node> getChildren(){     
              //iterate children of super
                   //now bind your children.styleclass with super.styleclass
              //end of iterate
              //return children
    }Thanks.
    Narayan

  • CSS positioning learning - I must be missing the point?!

    CSS positioning learning - I must be missing the point?!
    Okay I would like to know the benefit of using CSS
    positioning with DIVs when you have templates that helps your pages
    look all consistent with the same navigation or header? I don't see
    how you make a site look consistent doing it the other route.
    I have been reading through a CSS positioning tutorial at
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts.html
    and it is indeed somewhat complicated ESPECIALLY when you
    have to compensate for Internet explorer quirks.
    So again... someone please tell me what the benefit would be
    to learn CSS positioning....because I haven't for sure figured it
    out. And have liked templates since you can apply them to many
    pages quickly. Is CSS positioning really the future way to go?
    Thanks,
    Angie

    Templates have nothing to do with layout. They are only able
    to control
    your page's CONTENT. The location of this content is
    dependent not on the
    region but on the HTML structure of your page.
    The real advantage of using a CSS layout is that a) the pages
    are somewhat
    to considerably lighter in weight, and b) the externally
    linked CSS file is
    cached so that you don't have to continually load the same
    structural markup
    every time, and c) once you understand how to use the CSS,
    you have so much
    more control over the placement of things on the page....
    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
    ==================
    "computerkitten" <[email protected]> wrote
    in message
    news:[email protected]...
    > CSS positioning learning - I must be missing the point?!
    >
    > Okay I would like to know the benefit of using CSS
    positioning with DIVs
    > when
    > you have templates that helps your pages look all
    consistent with the same
    > navigation or header? I don't see how you make a site
    look consistent
    > doing it
    > the other route.
    >
    > I have been reading through a CSS positioning tutorial
    at <a target=_blank
    > class=ftalternatingbarlinklarge
    > href="
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts.html
    > and">
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts.html
    > and</a> it is indeed somewhat complicated
    ESPECIALLY when you have to
    > compensate for Internet explorer quirks.
    >
    > So again... someone please tell me what the benefit
    would be to learn CSS
    > positioning....because I haven't for sure figured it
    out. And have liked
    > templates since you can apply them to many pages
    quickly. Is CSS
    > positioning
    > really the future way to go?
    >
    > Thanks,
    > Angie
    >

  • Can't view the css in DW CS3

    I'm sure it's an option but it's driving me crazy. I have one
    computer at work that won't show the .css formating when linking
    the page.
    When I'm finished, and publish, it looks as it's supposed to,
    so I'm assuming that there must be an option to actually disable
    the .css formating to show on the wysiwyg, but so far i've failed
    misserably to find where to deactivate - reactivate this option...
    Can someone tell me how to turn this on / off?
    thanks.
    Elliot

    VIEW | Style Rendering > Display Styles
    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
    ==================
    "Vampmaster" <[email protected]> wrote in
    message
    news:g2c090$svg$[email protected]..
    > I'm sure it's an option but it's driving me crazy. I
    have one computer at
    > work
    > that won't show the .css formating when linking the
    page.
    >
    > When I'm finished, and publish, it looks as it's
    supposed to, so I'm
    > assuming
    > that there must be an option to actually disable the
    .css formating to
    > show on
    > the wysiwyg, but so far i've failed misserably to find
    where to
    > deactivate -
    > reactivate this option...
    >
    > Can someone tell me how to turn this on / off?
    >
    > thanks.
    >
    > Elliot
    >

  • When must you FTP the Spry Assets Folder.

    Must the Spry Assets Folder be FTP'ed every time you make a change to the CSS Spry sheets like background color or font color ...etc in Dreamweaver. I think it is a mute question but a set of rules would be a big assist.  Thanks.
    joepd

    Thanks Beth.
    Joe
    In a message dated 6/1/2010 12:46:44 P.M. Eastern Daylight Time, 
    [email protected] writes:
    You  actually are asking a very basic question, and the answer is also 
    basic.
    Here's the rule of thumb:
    Whenever you change  something in a file, you may FTP it to the server, if
    you want your changes to  be reflected in your page online. You will seldom
    if ever change your .js  file; so you will probably never have to FTP that
    more than once. If you are  making changes to your .css Spry stylesheet,
    you will want to FTP those  changes. And, of course, if you change the
    .html page, you will want to FTP  that.
    It is not necessary to FTP the entire SpryAssets folder,  just the files
    that change.
    It is also not necessary to FTP while  you are still working on the pages
    during a single session. Because you may  preview them locally in a browser,
    you might only FTP the changed files at the  end of your editing session, to
    finally check out the pages  online.
    Beth

  • Firefox 9 doesn't handle the css font stack properly

    The style body{font:13px/1.231 arial,helvetica,sans-serif;*font-size:small;*font:x-small} should cause the browser to work through the stack and use sans-serif if arial and helvetica are not available. This is how it worked in Firefox 8 and how it works in other browsers.
    With Firefox 9 if the first font is unavailable it just substitues one of it's own instead.
    If I remove arial and helvetica from the list then FF9 uses the system sans-serif as it should.
    I would paste in some sample code, but this forum doesn't seem to support code snippets.

    The css in the blogpost http://krakrjak.blogspot.com/2012/01/firefox-901-font-css-bug.html is wrong, and that is why this does not work in Firefox. To access a class you must use the class selector (a dot). For example: .p-inner p { }<br>
    You can go to Mozilla Developer Network to learn CSS.<br>
    https://developer.mozilla.org/en-US/learn/css<br>

  • Cache loadbalance on the CSS

    Is it possible to deploy CSS 11150 for cache loadbalance on the firewall loadbalance? If it is possible, do cache servers connect to CSS 2 or CSS 1? These cache is using for the reverse proxy cache. Now CSS 1 and 2 work for FWLB and SLB. Some servers are connected to CSS 2. Following is the network diagram.
    Router--- CSS 1 ---Firewalls--- CSS 2 --- Servers
    If cache must be connected to CSS 2, I think CSS 2 have much load. How about next network diagram? Cache servers are connected to CSS 3 and CSS 3 work server loadbalance. Is it possible?
    Router--CSS 1--F/W--CSS 2--CSS 3---servers
    Please give me some solutions?

    The caches should be off CSS 2. There is a good document on reverse-proxy caching with a CSS here:
    http://www.cisco.com/warp/public/117/CSS_CEreverseproxy.html
    You are correct that the Caches should have L2 adjancy for a transparent caching config. If you are expecting a high throughput here then you might want to consider diagram 2. Transparent caching on the CSS requires the CSS to proxy each request which adds an extra load on the CPU.
    Depending on which CSS model you have and what kind of throughput you are expecting it might be a good idea to offload the caching on a different CSS. This will scale better also.
    Hope this helps.
    Cheers,
    Perry.

  • The CSS type selector ... was not processed, because this issue is not fixed in Flash Builder 4.

    "The CSS type selector 'mx.containers.Accordion' was not processed, because the type was not used in the application."
    I've had to filter out this useless warning since FB2, can't we get this removed or provide us with the ability in Flash Builder to turn on/off various types of warnings and errors?  Eclipse has this for Java, Adobe should use that as a basis and add a similar feature.
    Unless there's another way to hide this useless warning I'm not aware of?  Anyone using any kind of Flex theme that comes with a complete css style for all UI classes must be seeing this junk, but what's the point?

    Was hoping this silly warning would go away by the time FB4 came out, but nope.  So I am back to agitate. 
    Does this even NEED to be a warning?  What's the harm in some unused css?  Actually, if the compiler is so smart that it can figure out that the css is unused, it should also be smart enough to ignore it entirely, right?
    The actual warning text (without inter-weaved joke) is:
    The CSS type selector 'mx.controls.RadioButton' was not processed, because the type was not used in the application.
    This is for EVERY unused class.  Makes it somewhat inconvenient (obscures real warnings and errors that you actually care about) to re-use css files, which is part of the point of using css in the first place.

  • Do you guys know where to populate the CSS class items on the WYSIWYG Editor as shown below?

    Do you guys know where to populate the CSS class items on the WYSIWYG Editor as shown below? We're trying to make it easily for the client to apply formatting by selecting the CSS Class on the list.

    The Page Template must contain a reference to exactly one stylesheet.
    That single <link rel="stylesheet"> tag must be directly in the <head> section of the Page Template, not in any content holder.
    The class to be added cannot have a selector any more complex than a single class. E.g., this is fine:
    .button {
         background-color: red;
         padding: 5px 10px;
    This will fail:
    .content .button {
         background-color: red;
         padding: 5px 10px;
    The classes to be added must each be added to the list in the Partner Portal (Partner Portal › Tools › Online Editor Settings › select your site from the dropdown › Editor Apply CSS).
    With caching disabled, the above changes will be visible when you change a page's Template and answer 'Yes' to the 'Do you want to reload?' alert box.
    More info here: CSS Styles are Missing in WYSIWYG Editor

  • Find the needle in the css (part 2)

    can someone please take a look at this links below and tell
    me where i would find the code that controls:
    a) the copy on the right that begins with "JOHN MCCAIN WAS
    BORN ON AUGUST 29TH, 1936...."
    b) the various headings on the sidebar (About..., Pages,
    Categories, etc - but not the one called 'Mailing List')
    http://www.thingsyoungerthanmccain.com/
    http://www.thingsyoungerthanmccain.com/wp-content/themes/minima-black-for-wordpress-115/st yle.css
    thanks!

    cause i had my lawyer write it...
    it's a wp template that i modified. the css is not of my
    doing.
    quote:
    Originally posted by:
    Newsgroup User
    joeq:
    WHY IS YOUR CSS SO VERBOSE?
    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
    ==================
    "eclipsme" <[email protected]> wrote in message
    news:[email protected]...
    > joeq wrote:
    >> can someone please take a look at this links below
    and tell me where i
    >> would find the code that controls:
    >
    > Check out Web Developer:
    >
    http://chrispederick.com/work/web-developer/
    >
    >> a) the copy on the right that begins with "JOHN
    MCCAIN WAS BORN ON
    >> AUGUST 29TH, 1936...."
    >
    > #menu ul (line 321)
    > {
    > margin-top: 1.5em;
    > margin-right: 0pt;
    > margin-bottom: 0.75em;
    > margin-left: 0pt;
    > padding-top: 0pt;
    > padding-right: 0pt;
    > padding-bottom: 1.5em;
    > padding-left: 0pt;
    > list-style-type: none;
    > list-style-image: none;
    > list-style-position: outside;
    > font-family: "Trebuchet
    MS",Trebuchet,Arial,Verdana,Sans-serif;
    > font-style: normal;
    > font-variant: normal;
    > font-weight: normal;
    > font-size: 78%;
    > font-size-adjust: none;
    > font-stretch: normal;
    > letter-spacing: 0.1em;
    > color: #cccccc;
    > line-height: 1.5em;
    > }
    >
    > #menu ul li (line 351)
    > {
    > margin-top: 1.5em;
    > margin-right: 0pt;
    > margin-bottom: 0.75em;
    > margin-left: 0pt;
    > padding-bottom: 15px;
    > }
    >> b) the various headings on the sidebar (About...,
    Pages, Categories,
    >> etc - but not the one called 'Mailing List')
    > h2 (line 67)
    > {
    > margin-top: 1.5em;
    > margin-right: 0pt;
    > margin-bottom: 0.75em;
    > margin-left: 0pt;
    > font-family: Verdana,Sans-serif;
    > font-style: normal;
    > font-variant: normal;
    > font-weight: bold;
    > font-size: 100%;
    > line-height: 1.4em;
    > font-size-adjust: none;
    > font-stretch: normal;
    > text-transform: uppercase;
    > letter-spacing: 0.1em;
    > color: #ffffff;
    > }
    > Harvey

  • Find the needle in the css

    can someone please take a look at the css in this blog and
    tell me where to find the code that controls the background color
    of the main panel?
    http://www.joequint.com/
    http://www.joequint.com/wp-content/themes/fspring_widgets/style.css
    thanks.

    Oh. Nice. I guess we can't be bothered to answer any more,
    then.
    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
    ==================
    "joeq" <[email protected]> wrote in message
    news:fu8563$stu$[email protected]..
    > works for me - can't be bothered to change.
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    >
    > "joeq" <[email protected]> wrote in
    message
    > news:fu7ji8$a8k$[email protected]..
    > > the one that i marked as "the answer".
    >
    > No post says "the answer", and so none of us have any
    idea. Why in the
    > world do you use those nasty web forums, Joe? :-)
    >
    >
    > --
    > Patty Ayers | www.WebDevBiz.com
    > Free Articles on the Business of Web Development
    > Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    > --
    >
    >
    >
    >
    >

  • When trying to update my Apps I am being advised my account is not valid for the UK, I must switch to the Ireland store. How do I do this?

    When trying to update or purchase Apps I am being advised my account is not valid for the UK Store and I must switch to the IReland store. How do I do this?

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3.Tap "View Apple ID"
    4. Enter your user name and password.
    5. Tap "Country/Region."
    6. Tap "Change Country/Region"
    7. Select the region where you will be located.
    8. Tap "Done".

  • When I click to open firefox it says that "firefox is already running but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system" and I've tried to shut down and restart my computer but it keeps

    when i click to open firefox it says that "firefox is already running but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." and I've tried to shut down and restart my computer but it keeps showing the same message. I've even uninstalled Firefox and then reinstalled in the hopes that the problem would be solved but it this message is still popping up. What can I do to solve this problem?
    == This happened ==
    Just once or twice
    == I was on facebook trying to upload pictures yesterday. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)

    Do you have a profile lock file in your profile folder? If so, delete it and see if TB runs properly:
    http://kb.mozillazine.org/Profile_in_use#Remove_the_profile_lock_file

  • Whenever I updated or downloaded a new app from the App Store, a message appears saying:   "Account Not In This Store Your account is not valid for use in the U.S. store. You must switch to the Swedish. store before purchasing."   I made some research onl

    Whenever I updated or downloaded a new app from the App Store, a message appears saying:
    "Account Not In This Store
    Your account is not valid for use in the U.S. store. You must switch to the Swedish. store before purchasing."
    I made some research online and asked a few of my friends with the same problem. All they did was sign out of iTunes from settings>iTunes & App Stores or from the App Store itself and signed back in. It worked for many of them but not with my iPhone 4s. It really does get on my nerves to always sign out and back in to the App Store as it sometimes works and allows me to update and download or most of the time it doesnt.
    When viewing my Apple ID account on my iPhone (after entering the password) it either views my account or says:
    "This Apple ID is only valid for purchases in the U.S. iTunes Store. You will be switched to that Store. Try your purchase again."
    So I press on OK then either switches me to the App Store app of its choice, or says "Cannot connect to iTunes Store".
    I tried restoring iOS6 hoping it was a bad installation, but i still have the same problem.
    Can anyone help me please?
    Arian

    Are you sure your AppleID is NOT tied to the US store? If you are trying to buy an app from the Swedish store you will be unable to do that. Some apps are only available on certain stores. That is why you get the "Cannot connect to the iTunes store" message when trying to buy that app. Your updates are being done from the US store ; thats why you can update sometimes and sometimes not.
    If you keep encountering problems contact iTunes support. They will help you sort it out.

  • Why do I get the message when I try to purchase an app or song on itunes using my iPhone5? "Account Not In This Store. Your account is not valid for use in the U.S. store. You must switch to the New Zealand store before purchasing."

    When I try to buy either an app or a song via iTunes, I have just started getting the following message and I am unable to change the store location. "Account Not In This Store. Your account is not valid for use in the U.S. store. You must switch to the New Zealand store before purchasing."
    This problem has only just started happening. I am on an iPhone5 iOS 7.0.4.
    Very frustrating. Can someone please tell me why & where the change has occured and how to fix it? In the past I have purchased many apps and songs on itunes and never had this problem.
    Thanks a mill :-)

    Click here and follow the instructions to change the iTunes Store country.
    (97125)

Maybe you are looking for

  • How to prevent creation of billing docs for Zero Quantities

    Hello everyone, Could someone please help me with this. We have some invoices created with 'zero' quantities. We need to stop prining invoices for the invoices with zero quantities. Can we stop creating invoice for zero quantities. if yes , please le

  • CorrelationSet error while invoking Bpel from a java appli

    Hi There, I'm trying to send a signal from a java application to a bpel process (already instanciated before) and I get the following error : [Erreur ORABPEL-10015] : propriété de corrélation non résolue [Description] : à la ligne 25 de "/oracle/prod

  • Using multi listbox

    How can i use multilist box in order to fetch parameters from user ex selection-screen begin of block blk1. parameter :   s_maktx like makt-maktx,               p_maktx(18),               s_werks like mard-werks,               s_lgort like mard-lgort

  • Chinese Websites, UFT-8 or Chinese Encoding?

    I'm creating a Chinese version of our website which uses Mandarin (simplified) Chinese. I have specified that as the Encoding in Dreamweaver. But when I save pages that use the Chinese text, Dreamweaver gives me a message saying to use UFT-8 encoding

  • IP Profile 135K

    KevG123 wrote: I have exactly the same problem - albeit with even worse speeds Living in the sticks my best connection is only ever around 700K (long way to the exchange) It stays like this for a few weeks then drops to 135K (IP profile sticks at 135