CSS Problem With Background

Im working on Dreamweaver MX
The code in my CSS sheetis:
border: 1px solid #669999;
background-attachment: scroll;
background-image: url(/assets/pictures/lama_border1.gif);
background-repeat: no-repeat;
background-position: left top;
There's grey square appears instead of the image.
I use a custom class.
Before everything was ok.

Nobody will have any idea what you are describing without
seeing the full
page. Can you post a link to it, please?
> background-attachment: scroll;
> background-position: left top;
There's no need for these two styles - the first and the
second are a
restatment of the default.
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
==================
"Prizmo" <[email protected]> wrote in
message
news:eovgkc$13g$[email protected]..
> Im working on Dreamweaver MX
> The code in my CSS sheetis:
>
> border: 1px solid #669999;
> background-attachment: scroll;
> background-image:
url(/assets/pictures/lama_border1.gif);
> background-repeat: no-repeat;
> background-position: left top;
>
> There's grey square appears instead of the image.
>
> I use a custom class.
>
> Before everything was ok.
>

Similar Messages

  • Problem with background formatting in pivot table

    Hello,
    I have a problem with background formatting in pivot table. I can't change background (light blue rectangular in upper left corner). Do you have any idea how to do it?
    Here is the link to the picture of the pivot table:
    http://img163.imageshack.us/img163/110/unledfyq.png
    I would be grateful for any help.
    Regards,

    Hey,
    Check this link once, you will need java script to acheive this:
    http://everythingoracle.com/obieehdom.htm
    scroll down to this topic: Parsing using HTML DOM
    Please award points if helpful.
    Thanks,
    -Amith.

  • Problem with Background image and JFrame

    Hi there!
    I've the following problem:
    I created a JFrame with an integrated JPanel. In this JFrame I display a background image. Therefore I've used my own contentPane:
    public class MContentPane extends JComponent{
    private Image backgroundImage = null;
    public MContentPane() {
    super();
    * Returns the background image
    * @return Background image
    public Image getBackgroundImage() {
    return backgroundImage;
    * Sets the background image
    * @param backgroundImage Background image
    public void setBackgroundImage(Image backgroundImage) {
    this.backgroundImage = backgroundImage;
    * Overrides the painting to display a background image
    protected void paintComponent(Graphics g) {
    if (isOpaque()) {
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    if (backgroundImage != null) {
    g.drawImage(backgroundImage,0,0,this);
    super.paintComponent(g);
    Now the background image displays correct. But as soon as I click on some combobox that is placed within the integrated JPanel I see fractals of the opened combobox on the background. When I minimize
    the Frame they disappear. Sometimes though I get also some fractals when resizing the JFrame.
    It seems there is some problem with the redrawing of the background e.g. it doesn't get redrawn as often as it should be!?
    Could anyone give me some hint, on how to achieve a clear background after clicking some combobox?
    Thx in advance

    I still prefer using a border to draw a background image:
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.border.*;
    public class CentredBackgroundBorder implements Border {
        private final BufferedImage image;
        public CentredBackgroundBorder(BufferedImage image) {
            this.image = image;
        public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
            int x0 = x + (width-image.getWidth())/2;
            int y0 = y + (height-image.getHeight())/2;
            g. drawImage(image, x0, y0, null);
        public Insets getBorderInsets(Component c) {
            return new Insets(0,0,0,0);
        public boolean isBorderOpaque() {
            return true;
    }And here is a demo where I load the background image asynchronously, so that I can launch the GUI before the image is done loading. Warning: you may find the image disturbing...
    import java.awt.*;
    import java.io.*;
    import java.net.URL;
    import javax.imageio.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class BackgroundBorderExample {
        public static void main(String[] args) throws IOException {
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame f = new JFrame("BackgroundBorderExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JTextArea area = new JTextArea(24,80);
            area.setForeground(Color.WHITE);
            area.setOpaque(false);
            area.read(new FileReader(new File("BackgroundBorderExample.java")), null);
            final JScrollPane sp = new JScrollPane(area);
            sp.setBackground(Color.BLACK);
            sp.getViewport().setOpaque(false);
            f.getContentPane().add(sp);
            f.setSize(600,400);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
            String url = "http://today.java.net/jag/bio/JagHeadshot.jpg";
            final Border bkgrnd = new CentredBackgroundBorder(ImageIO.read(new URL(url)));
            Runnable r = new Runnable() {
                public void run() {
                    sp.setViewportBorder(bkgrnd);
                    sp.repaint();
            SwingUtilities.invokeLater(r);
    }

  • Problems with "Background Eraser Tool" and "Blur". The tools don't affect the whole area but just connect the start and the last points.

    Hello!
    I have some issues with Photoshop CC 2014. The tools "Background Eraser Tool" and "Blur" won't work correctly. When I’m holding down the left mouse button and trying to erase or blur some area, the tools don’t affect the whole area but just connect the start and the last points – like drawing a line. These troubles exist with mentioned tools only, other tools work correctly.
    I’ve restored each tool separately, restored all the tools together, installed new drivers for tablet, re-installed Photoshop and even Windows. Nothing helped. These tools worked correctly earlier with the same adjustments, but one day something went wrong.
    How can I make the tools work correctly?
    Some information about my computer:
    • Notebook Lenovo Y560
    • Windows 7 Home Basic SP1 x64
    • Intel Core i5 2.53 GHz
    • 4Gb RAM
    • ATI Mobility Radeon HD 5730 1Gb
    • Tablet Wacom Bamboo CTL-470

    Hi,
    I have a similar problem with the Background Eraser tool as well. It's the same both on my PC and on my laptop, both running Win 8.1 and PS CC2014. Would be great to have a solution for this. Did you managed to find a fix?

  • CSS problem with the clear property

    This is my actual page
    http://www.martcol.co.uk/abba/
    and I want to swap the paragraphs around. This is what I come up
    with
    http://www.martcol.co.uk/abba/test/test01.php
    I reckon I am getting muddle with the whole clearing the
    float thing.
    Many thanks
    Martin
    Actually, I think it only breaks up in Firefox - bear in mind
    I only tested in IE6 and FF

    http://martcol.co.uk/abba/pages/patch.php
    Oh dear, another problem with my floated elements and the
    clear property....
    Martin
    I think I have this now. Not sure why but picking away at it
    has it fixed.

  • Do anyone have problem with background process APSDeamon.exe, do anyone have problem with background process APSDeamon.exe

    Hi All,
    I have a problem with APSDeamon.exe. It do not close properly. If I open iTunes and then close it and try to re-open it again. I must end the process in the task manager to be able to open the software. Has anyone got this kind of issues??

    Please look clayclay's and my answers -  https://discussions.apple.com/message/17002335#17002335

  • CSS problem with IE

    Hi
    I have created a style sheet and linked it to a template to
    form the basis of a website. I have included a background image in
    the masthead. It works fine in Firefox, but when I review the
    template or any pages made from the template in Internet Explorer
    the background image is not visible. I have checked my CSS with the
    W3C validator and there are no errors, so I am assuming that it is
    an IE problem. If anyone can help it would be great, as at least
    50% of the people who will wish to view the site I am trying to put
    together will be using IE.

    Assuming that this is the correct path to the background
    image, change
    this -
    background: url("../graphics/for banner.jpg")no-repeat right
    top;
    to this -
    background: url("../graphics/for banner.jpg") no-repeat right
    top;
    (note missing space after the closing parenthesis)
    Also, it's very bad form to have spaces in your
    file/pathnames. I suuggest
    that you rename those files.
    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
    ==================
    "sallw" <[email protected]> wrote in message
    news:[email protected]...
    > Oh, and here is the code to the CSS
    >
    > /***********************************************/
    > /* HTML tag styles */
    > /***********************************************/
    >
    > body{
    > font-family: Arial,sans-serif;
    > color: #333333;
    > line-height: 1.166;
    > margin: 0px;
    > padding: 0px;
    > background-color: #f8f8fa;
    > width: 100%;
    > }
    >
    > a:link, a:visited, a:hover {
    > color: #006699;
    > text-decoration: none;
    > }
    >
    > a:hover {
    > text-decoration: underline;
    > }
    >
    >
    > h1, h2, h3, h4, h5, h6 {
    > font-family: Arial,sans-serif;
    > margin: 0px;
    > padding: 0px;
    > }
    >
    > h1{
    > font-family: Times New Roman;
    > font-size: 120%;
    > color: #002a69;
    > }
    >
    > h2{
    > font-size: 114%;
    > color: #006699;
    > }
    >
    > h3{
    > font-size: 100%;
    > color: #002a69;
    > }
    >
    > h4{
    > font-size: 100%;
    > font-weight: bold;
    > color: #002a69;
    > }
    >
    > h5{
    > font-size: 100%;
    > color: #334d55;
    > }
    >
    > ul{
    > list-style-type: square;
    > }
    >
    > ul ul{
    > list-style-type: disc;
    > }
    >
    > ul ul ul{
    > list-style-type: none;
    > }
    >
    > label{
    > font: bold 100% Arial,sans-serif;
    > color: #334d55;
    > }
    >
    >
    > /***********************************************/
    > /* Layout Divs */
    > /***********************************************/
    >
    > #masthead{
    > margin: 0;
    > padding: 10px 0px;
    > background: url("../graphics/for banner.jpg")no-repeat
    right top;
    > border-bottom: 1px solid #cccccc;
    > width: 100%;
    >
    > }
    >
    > #navBar{
    > margin: 0 80% 0 0;
    > padding: 0px;
    > background-color: #eeeeee;
    > border-right: 1px solid #ccc;
    > border-bottom: 1px solid #ccc;
    > }
    >
    > #content{
    > float:right;
    > width: 75%;
    > margin: 0;
    > padding: 0 3% 0 0;
    > }
    >
    >
    > /***********************************************/
    > /*Component Divs */
    > /***********************************************/
    >
    > #siteName{
    > margin: 0px;
    > padding: 0px 0px 10px 10px;
    > }
    >
    >
    > /*************** #pageName styles **************/
    >
    > #pageName{
    > padding: 10px 0px 0px 0px;
    > }
    >
    >
    > /************* #breadCrumb styles *************/
    >
    > #breadCrumb{
    > font-size: 80%;
    > padding: 5px 0px 5px 10px;
    > }
    >
    >
    > /************** .feature styles ***************/
    >
    > .feature{
    > padding: 0px 0px 10px 10px;
    > font-size: 80%;
    > }
    >
    >
    > /************* #siteInfo styles ***************/
    >
    > #siteInfo{
    > clear: both;
    > border: 1px solid #cccccc;
    > font-size: 75%;
    > color: #cccccc;
    > padding: 10px 10px 10px 10px;
    > margin-top: 0px;
    > }
    >
    >
    > #siteInfo img{
    > padding: 4px 4px 4px 0px;
    > vertical-align: middle;
    > }
    >
    >
    > /************* #search styles ***************/
    >
    > #search{
    > padding: 5px 0px 5px 10px;
    > border-bottom: 1px solid #cccccc;
    > font-size: 90%;
    > }
    >
    > #search form{
    > margin: 0px;
    > padding: 0px;
    > }
    >
    > #search label{
    > display: block;
    > margin: 0px;
    > padding: 0px;
    > }
    >
    >
    > /*********** #navBar link styles ***********/
    >
    > #navBar ul a:link, #navBar ul a:visited {display:
    block;}
    > #navBar ul {list-style: none; margin: 0; padding: 0;}
    >
    >
    > #navBar li {border-bottom: 1px solid #EEE;}
    >
    >
    > html>body #navBar li {border-bottom: none;}
    >
    >
    >
    > /*********** .relatedLinks styles ***********/
    >
    > .relatedLinks{
    > margin: 0px;
    > padding: 0px 0px 10px 10px;
    > font-size: 90%;
    > }
    >
    > .relatedLinks h3{
    > padding: 10px 0px 2px 0px;
    > }
    > .relatedLinks a:visited{
    > color: #006699;
    > text-decoration: none;
    > }
    >
    > .relatedLinks a:hover{
    > color: #006699;
    > text-decoration: underline;
    > }
    > /************** #headlines styles **************/
    >
    > #headlines{
    > margin: 0px;
    > padding: 10px 0px 20px 10px;
    > font-size: 80%;
    > }
    >
    > #headlines p{
    > padding: 5px 0px 5px 0px;
    > }
    >

  • Problems with background job

    Hi,
    I have problems when creating a job that is supposed to be run once in background. I use the common steps as described below. My problem is that the report is executed twice.
    - First it is executed synchronously when the job is created
    - Then it is executed in the normal job step as I want it to do
    I don't want it to be executed the first time because it creates data!!!
    Code:
    CALL FUNCTION 'JOB_OPEN'
         EXPORTING
              jobname  = w_jobid
         IMPORTING
              jobcount = w_jobnr
              sdlstrtdt = sy-datum
              sdlstrttm = sy-uzeit.
    SUBMIT (p_prog)
    WITH p_idocnr = p_idocno
               USER            p_user
               VIA   JOB       w_jobid
                     NUMBER  w_jobnr
                     AND       RETURN.
    CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
              jobcount         = w_jobnr
              jobname          = w_jobid
              strtimmed        = 'X'
         IMPORTING
              job_was_released = w_jobrel.
    Does anyone have a clue of what I should do to prevent this?
    //  Regards  Hans

    Hi again,
    1. U are right.
    2. It will happen if we use SUBMIT.
    3. As per the help documentation,
        it will run the program in separate session,
       ( as soon as submit statement comes)
    4. and run the INITIALIZATION event.
    The VIA JOB addition also loads the program accessed in a separate internal mode when the SUBMIT statement is executed and the system performs all the steps specified before START-OF-SELECTION. This means the events LOAD-OF-PROGRAM and INITIALIZATION are triggered and selection screen processing is performed. If the selection screen is not processed in the background when VIA SELECTION-SCREEN is specified, the user of the calling program can eidit it and schedule the program accessed in the background request using the function Place in Job. If the user cancels selection screen processing, the program is not scheduled in the background job. In both cases, execution of the program executed is completed after selection screen processing and the system returns to the calling program due to the AND RETURN statement.
    regards,
    amit m.

  • Problem with background job using SUBMIT under different user

    Hi All,
    I am submitting a background job under different user name. I am submitting this job by using JOB_OPEN , SUBMIT report and JOB_CLOSE. But submit statement is returning sy-subrc 8, becuase of this the job_close is failed. Can you please help me to solve this problem.
    Thanks in advance.
    Tjgupta

    Hi,
    The user is having all authorizations. is there any difference with user types?
    This user is having  user type " as communication data".
    Thanks,
    Tjgupta

  • 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)
    >

  • Cross browser CSS Buttons with background images

    Hi All,
    I have to make a button for a website in which the labels
    will be DB driven, so i came up with css to make such buttons, but
    the problem is i need the buttons to work in almost all browsers
    (from version 5 - 7 IE, FF 1.0 -2.0, Opera 7 - 9 Netscape 6- 9,
    safari and Mac IE and FF), The buttons are also designed in a
    specific manner (i.e the button label will be having a break if
    there are two words in it and will be aligned center to the
    container. the edges of the button are curved and has a gradient
    effect.)
    I am not able to get the text centrally aligned also the text
    goes off the container and gets hidden behind the right side image
    in FireFox but in IE it manages to stretch the container but
    doesn't gets aligned to the center, thats because i guess i am
    specifying width to the container.
    Any Help will be highly appreciated.
    Thanks
    Vinay

    Hi All,
    I have to make a button for a website in which the labels
    will be DB driven, so i came up with css to make such buttons, but
    the problem is i need the buttons to work in almost all browsers
    (from version 5 - 7 IE, FF 1.0 -2.0, Opera 7 - 9 Netscape 6- 9,
    safari and Mac IE and FF), The buttons are also designed in a
    specific manner (i.e the button label will be having a break if
    there are two words in it and will be aligned center to the
    container. the edges of the button are curved and has a gradient
    effect.)
    I am not able to get the text centrally aligned also the text
    goes off the container and gets hidden behind the right side image
    in FireFox but in IE it manages to stretch the container but
    doesn't gets aligned to the center, thats because i guess i am
    specifying width to the container.
    Any Help will be highly appreciated.
    Thanks
    Vinay

  • Css problem with image

    Hello,
    I am just starting working with dreamweaver cc for 3 months and try to create a website.
    I try to learn step by step CSS uses but since some weeks  I have some problems in displaying figure and caption into this page.
    It seems very easy when I look for other websites 
    http://analytics-consulting-v501.businesscatalyst.com/laboratoire_test_2.html
    I try to have two images and their captions on the same line. and so on , line after line.
    and then isotope to filter them using the criteria in the first line.
    Of course, I have test many ways but without success... probably due to a lack of work with CSS.
    Thank you very much for any help !!!
    Jean-François

    I have removed all of your CSS to show images and associated caption being placed in a document.
    <!DOCTYPE html>
    <html>
    <head>
    <title>Analytics Consulting</title>
    <style>
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    body {
        width: 1000px;
        margin: auto;
    .thumb {
        width: 50%;
        float: left;
        padding: 15px 25px;
    div.thumb:odd {
        clear: both;
    .thumb img{
        width: 70%;
        display: block;
        margin: auto;
    </style>
    </head>
    <body>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    <div class="thumb">
    <div><a href="" title="Matériels" class="colorbox" rel="gallery-all"><img src="http://livedemo00.template-help.com/drupal_45593/sites/default/files/styles/portfolio_3_cols/public/Image00001.jpg" alt="" title="" /></a></div>
      <div><a href="">Materiels</a></div> 
      <div>Vente et Location. Support et Contrats de maintenance. Pièces détachées.</div> 
      <div><a href="">Plus</a></div> 
    </div>
    </body>
    </html>

  • CSS problem with drop menu please help!

    I have been going crazy for hours trying to use CSS to cover up part of a border, but I can't seem to do it with z-index or anything. My desired effect is to have the border be visible around the menu item and the drop part (only during hover) and eliminate the part that is separating the menu item from the drop box. Any help would be greatly appreciated.
    Here is the menu part of my HTML:
    <ul class="dropdown">
                    <li><a href="about-us.html">Company</a>
                        <ul>
                            <li><a href="about-us.html">About Us</a></li>
                            <li><a href="people.html">People</a></li>
                            <li><a href="business-development.html">Business Development</a></li>
                        </ul>   
                    </li>
                    <li><a href="oral-cancer.html">Therapeutic Areas</a>
                        <ul>
                            <li><a href="oral-cancer.html">Oral Cancer</a></li>
                        </ul>
                    </li>
                    <li><a href="media-inquiries.html">News</a>
                        <ul>
                            <li><a href="media-inquiries.html">Media Inquiries</a></li>
                            <li><a href="press-releases.html">Press Releases</a></li>
                            <li><a href="publications.html">Publications</a></li>
                        </ul>
                    </li>
                    <li><a href="contact.html">Contact</a>
                        <ul>
                            <li><a href="contact.html">Contact</a></li>
                        </ul>
                    </li>
                </ul>
    Here is the CSS:
    /* Drop Menu */
    ul.dropdown, ul.dropdown li, ul.dropdown ul
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 15px;
    ul.dropdown
        position: relative;
        float: left;
    ul.dropdown li
        float: left;
        background-color: #C3C3E5;
        padding: 7px 10px;
        line-height: 15px;
        border: 1px solid #C3C3E5;
        height: 20px;
    ul.dropdown li:hover
        position: relative;
        background-color: #BBAADD;
        border: 1px solid #FFFFFF;
        border-bottom-color: #BBAADD;
    ul.dropdown ul
        z-index: 100;
        visibility: hidden;
        position: absolute;
        width: 180px;
        top: 100%;
        left: 0;
        margin-left: -1px;
    ul.dropdown ul li
        float: none;
        background-color: #BBAADD;
        border: 0;
    ul.dropdown a:link
    z-index: 100;
        color: #FFFFFF;
        text-decoration: none;
    ul.dropdown li:hover > ul
        visibility: visible;
        border: 1px solid #FFFFFF;
    ul.dropdown li:hover > ul li:hover
        border: 0;
    ul.dropdown li:hover > ul li a:hover
        text-decoration: underline;

    Like this:
    http://alt-web.com/DEMOS/CSS2-Horiz-Drop-Menu.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Problem with Background Callable Object

    Hi All,
    I am trying to create a background callable object in GP. From my understanding and according to the help document here is what I did:
    - Generated a deployable proxy development component using the Top down approach.
    - Created a Java Development component which implements the interface IGPBackgroundCallableObject. This Development component has the proxy object generated in Step 1 in the Used DCs. Internally this class does a JNDI lookup to the deployed Webservice Client and executes the webservice. Then I add this class as a public part in the Development Component.
    - Create a J2EE Library that has the public part of the class generated in Step 2 as the Used DCs.
    - Deploy the Library and use that in the GP Design time to create the Callable object.
    Following are the problems that I am facing:
    - The Java class that consumes the deployable proxy does not seem to recognize the classes that are present in the proxy object. Even though there is a reference to it.
    - If we try to include the proxy project in the Java Build path of the class it simply removes the link at build time.
    - At one instance it somehow succeeded during the build phase and I deployed the library to the J2EE engine but while testing the callable project it came up with a NoClassDef exception. Basically it was unable to find the proxy object’s classes.
    I am not sure if I am doing anything wrong or the process that I am following is not right. I would appreciate if anyone could help me understand what the problem is and how do we go about achieving the above scenario.
    Best regards,
    Sudhi

    Hi Jorgen,
    This behavior is completely normal. It can seem awkward but what you described is somehow logical.
    Let's say you have three actions, the second one is the email notification. When completing the first action, the second action is triggered. As it is a background callable object, it is put into the queue and wait for processing. As the refresh of the screen is faster than the processing of the callable object, the next action (the third) is not yet active/ready to be processed.
    When the email is sent (i.e. the background callable object executed), a callback takes place and the next activity is triggered. Then, the 3 action is active and can be shown.
    Due to technical restriction of Web Dynpro, it is not possible to refresh the screen when the action is ready to be processed. The user has to refresh it explictly.
    With SP12, the processing of the queue has been improved and it's much more faster than before. The "problem" you noticed shouldn't be there anymore.
    Hope this helps.
    David

  • Iphoto: problem with background color on Calendar.  Help!

    I have made 4 calendars using iphoto now.  The first time I did it, I was able to custom background color the pages, including the bottom half with month and days.  Since then, the only page that works for making background color changes is the top page (the border between photos).  What am I doing wrong?  When I go back to my original calendar (which I saved), I can still change the colors, but it doesn't work on any subsequent calendars.  Can someone please advise?
    Thanks,
    Catherine

    Catherine,
    you might try to change the "Theme" of your calendar. Not all themes allow to change the background color for the calendar page. For example, the "Colored Paper" theme lets you select the background color for all pages - click the "Layout" button and select a page in the page browser;  then select a colored background tile, like this:
    Regards
    Léonie

Maybe you are looking for