Background Image Question (CSS)

I have the following CSS style in my head section:
body { margin: 0px; padding: 0px; text-align: center;
background: #fff
url(/images/Home/TopGradBlack.jpg) 0 0 repeat-x; }
...where TopGradBlack.jpg is a black-white gradient measuring
500 pixels
high by 5 pixels wide. The image displays as it should, with
the page
appearing black at the top, grading into white below.
But I want the background to consist of a black-white
gradient on the
left half of the page only, with a blue-white gradient on the
right
half. So I inserted a div (ID = Body2) inside the body and
added another
style, as follows:
body { margin: 0px; padding: 0px; text-align: center;
background: #fff
url(/images/Home/TopGradBlack.jpg) 0 0 repeat-x; }
#Body2 { margin: 0px; padding: 0px; text-align: center;
background: #fff
url(/images/Home/TopGradBlue.jpg) 50% 0 repeat-x; }
But it doesn't work. Rather than displaying from the middle
of the page
rightward, TopGradBlue.jpg dispays clear across the page. If
I change it
to 0 50% repeat-x, then it works as it should, displaying
across the
middle of the page. But when I change it back to 50% 0
repeat-x, it
displays clear across the top of the page.
What am I doing wrong?
Thanks.

I would NEVER use GIF compression with gradients.
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
==================
"darrel" <[email protected]> wrote in message
news:fu7s37$ja0$[email protected]..
>> So, in other words, it can't be done?
>
> If your gradient is vertical (from top to bottom) just
make the image very
> wide...like 1000 pixels, and save it as a GIF (Gifs
compress really well
> with horizontal bands of the same color). Then do just
as you're doing,
> but omit the 'repeat'.
>
> Otherwise, I assume you're trying to create two columns?
Perhaps the
> solution is to make the gradient a background of the
column wrapper DIV
> isntead of making it a standalone DIV just for the
image.
>
>> similar things before. Also, the percent locator
works on vertical
>> alignment, so I assumed it would horizontally, too.
>
> It 'worked' on vertical because you weren't repeating it
vertically.
>
> -Darrel
>

Similar Messages

  • ADF panelGroup component's background image in CSS does not render

    Hi,
    I have an issue with the panelGroup component, where a background-image specified in the styleClass DOES NOT RENDER when deployed on the OAS. It works fine when I run the page on my local OC4J.
    I've verified that the image I use is deployed correctly on the server.
    We are using :
    JDeveloper Studio Edition: 10.1.3.3.0.4157 (Build JDEVADF_10.1.3.3.0_NT_070619.1129.4157)
    Oracle Application Server: 10.1.3.5.0 running on RHEL 5.
    I'm customizing pages of an ADF application to change the branding and skinning. The page header region used in the application uses a 'panelPageHeader' and the image I need to introduce is part of branding and must be rendered above the application menus (2 levels: 1->MenuTabs, 2-MenuBar).
    If it would help to see how my page renders locally, here's the link: http://tech-nik-alley.blogspot.com/2010/09/adf-panelgroups-background-image.html
    (The brightly colored bar above the menus is newly introduced, ABC_Lightbar.jpg).
    Using an objectImage with my light_bar image as source, directly in the facet menu2, causes the alignment of all pages to get disrupted. Hence the work-around of using the image as a background.
    A copy of my pageHeader region is below, with comments. The panelGroup component newly introduced is in the facet "menu2". I've added the CSS definitions in the page as comments as appropriate.
    Any pointers on how to debug further, work-arounds etc. are appreciated.
    TIA and regards
    Deepak.
    =====MY PAGE HEADER REGION====
    <af:regionDef var="attr">
    <af:panelPageHeader styleClass="ss0" > <!—ss0 is "padding:0px;margin-left:14%;margin-right:14%;margin-top:0px;margin-bottom:0px;display:block;background-color:transparent;" -->
    <f:facet name="branding">     
    <af:panelGroup styleClass="ss_brand"> <!--ss_brand is "display:block;margin-bottom:12px" -->
    <af:objectImage shortDesc="#{imageBean['SS_COMPANY_LOGO'].description}"
    source="#{imageBean['SS_COMPANY_LOGO'].physicalName}"/>
    </af:panelGroup>
    </f:facet>
    <f:facet name="menuGlobal" >
    <af:panelGroup layout="horizontal" styleClass="ss00" rendered="#{attr.globalMenuShown}">     <!—ss00 is "margin-right:10px;" -->
    <f:facet name="separator">
    <af:objectImage source="#{imageBean['SS_GLOBAL_SEPARATOR'].physicalName}" shortDesc=""/>
    </f:facet>
    <af:menuButtons>
    <af:goMenuItem text="#{sessionBean.authenticated?pageHeaderBean.loggedInUserInfo:messageBean.SS_GEN_GUEST}"/>
    </af:menuButtons>
    <af:menuButtons startDepth="0" var="menuGlobal" value="#{menuModel.model}">
    <f:facet name="nodeStamp">
    <af:goMenuItem text="#{menuGlobal.label}"
    destination="#{menuGlobal.fileName}"
    rendered="#{menuGlobal.type=='global' &amp;&amp; menuGlobal.rendered}"
    />
    </f:facet>
    </af:menuButtons>
    </af:panelGroup>
    </f:facet>
    <f:facet name="menu1" >
    </f:facet>
    <f:facet name="menu2" >     <!-- facet menu2 originally has a 'menuTabs' (level 1 menu) on top of a 'menuBar' (level 2 menu) -->
                        <!-- Change required: introduce a light_bar image above level 1 menu (menuTabs). The image spans the page -->
    <af:panelGroup rendered="#{skinFamily.menuLayout=='horizontal' and attr.otherMenuShown}">
         <!--Change: new panelGroup introduced, with a background image in the styleClass -->
    <af:panelGroup layout="vertical" styleClass="pageHeaderLightBar"> <!-- pageHeaderLightBar is "background-image:url(/ss/skin/ABC/images/ABC_lightbar.jpg); " -->
    <!--<af:objectImage source="/ss/skin/ABC/images/ABC_lightbar.jpg"/>-->     <!--Specifying the image directly, disrupts the all other OOTB pages-->
    <af:objectSpacer width="22px"/>
    </af:panelGroup>
    <af:panelGroup styleClass="pageHeaderMenuLevelOne"> <!-- Another place where a back-ground image is used for a panelGroup using the styleclass -->
    <af:menuTabs startDepth="0" var="menuTab" value="#{menuModel.model}">     <!-- The level 2 menu using menuTabs -->
    <f:facet name="nodeStamp">
    <af:goMenuItem text="#{menuTab.label}"
    destination="#{menuTab.fileName}"
    rendered="#{menuTab.rendered and menuTab.type!='global'}"/>
    </f:facet>
    </af:menuTabs>
    <af:menuBar startDepth="1" var="menuBar" value="#{menuModel.model}">     <!--The level 2 menu using a menuBar -->
    <f:facet name="nodeStamp">
    <af:goMenuItem text="#{menuBar.label}"
    destination="#{menuBar.fileName}"
    rendered="#{menuBar.rendered}" />
    </f:facet>
    </af:menuBar>
    </af:panelGroup>
    </af:panelGroup>
    </f:facet>
    </af:panelPageHeader>
    </af:regionDef>
    ===================================

    'background-image:url("../image/Sunset.jpg")' is a relative URL... relative to the final generated markup. It should be wrong like 99% of the times. You should rather use a styleClass and deal with the background-image with skinning as the skinning engines knows how to deal with such urls. Note that you'll most likely have to define a new resource loader and servlet mapping for the ResourceServlet. I know someone made a blog entry about that, was it Frank or Shay? Hmmm cannot remember... Maybe John as well. Anyway a Google search should yield good results for adf resource loader I think.
    Regards,
    ~ Simon

  • Quick background image question

    I think this is a simple question, but maybe it's not.
    Basically I want an image to behave like the background images on
    Prada.com. It scales based upon
    width and crops the height. It seems to be anchored to the
    top-right corner, unless you get fairly narrow then it isn't
    anchored anymore, and it stops scaling the image. I have two large
    displays and no matter how wide I stretch my window it just keeps
    scaling the image. How would I go about doing this?

    "rileyflorence" <[email protected]> wrote in
    message
    news:gf27fd$b22$[email protected]..
    >I think this is a simple question, but maybe it's not.
    Basically I want an
    > image to behave like the background images on
    http://www.prada.com. It
    > scales
    > based upon width and crops the height. It seems to be
    anchored to the
    > top-right
    > corner, unless you get fairly narrow then it isn't
    anchored anymore, and
    > it
    > stops scaling the image. I have two large displays and
    no matter how wide
    > I
    > stretch my window it just keeps scaling the image. How
    would I go about
    > doing
    > this?
    Look for scale9 in the help.
    HTH;
    Amy

  • Background image question

    Hi,
    I am trying to spread a gif image to cover the entire background of my page but the only options I see in page options is "no repeat" which only gives me one image in the top left corner, or else repeat which tiles the image. I think I'm missing some crucial step (or else some crucial part of my brain!)
    Thanks,
    Amanda

    There are other ways to position a background image - see the following as a reference:
    http://reference.sitepoint.com/css/background-position
    However, what you are trying to do isn't going to work the way you want it to.  Even at that size,the image files size is quite large.  Unless, the image is a repeating one, there is no way to determine the size of the window of the person viewing your page... so how do you determine what size to make the image.  The only reliable way is to make it repeat horizonally or vertically or all across the background.
    You could have a fairly large image sitting in the middle of the window and have it fade out on each side of the image, into a complimentary colour, so that smaller window sizes will see mostly image, larger browser windows will see the image centered, but blended into the colour of choice on the external edges.
    Maybe if you posted up an example of what you are trying to do, people may be be able to come up with an alternative.  However, using a full photo image isn't going to work as you expect I'm afraid.

  • Setting a background image using CSS Designer

    I am trying to set a background image for a page header using the CSS Designer. When I click the browse button the Select Image Source dialog box launches but any time I click on something the dialog box closes and no changes are made. Does anyone know what is causing this?

    Which DW are you using and which platform/OS, please? I am unable to reproduce this with CC2014 on OS10.9.4

  • 7941/61g background image question

    I have added a background image to our 7941/61g ip phones. The image looks good, but the button appearance divider lines are going accross the screen in front of the image. Is there any way to set up the display to remove the button separator lines while keeping the line labels?
    I had looked into using the idle url, but found that I had to use an external web server for this. Besides, I am not sure if the idle image would be over top of the button labels. If anyone knows if this is the case I would appreciate hearing about it.
    Thanks,
    Mark

    The issue is not that I can't get the custom background image on the phone. I have a custom background on the phone, but the line appearance deviders (The lines above and below each line label) extend completely across the display over top of the background image. For example, I have 6 buttons comfigured on a 7961G phone which causes 7 lines to cross all the way across the phone display. If I have 3 lines configured only 4 lines extend across the display.
    I am asking if there is any way to remove the lines deviding the phone-line labels that are going across the display over top of the custom background image.
    I was at a store the other day and saw that their 7961 phone had a background image and the line labels only had boxes around them. The line label deviders did not extend across the phone any farther than the line label text. This is what I would like to configure. I'm not sure if the phone was useing Callmanger or a SIP server though.

  • Blending with background image question

    Hello,
    I'm trying to recreate a similar graphic to this one, which was done in CorelDraw.
    I've played around with blending modes (normal, multiply etc...) and overprint on the pink crosses, but can't get them to look similar (or exactly the same, which is the goal).
    The closes I've gotten was putting one cross in overprint, and another one without overprint and set to 75% transparency. But that way the pink isn't as consistent as I'd like it to be.
    When using blending modes or overprint the black (the shirt on the left) completely downs out the pink. It should be visible (you can see a slight grey tint where the black is, doesn't show up in the pic well) but it shouldn't overpower the pink.
    What am I missing here?

    Blending modes and CMYK can produce unexpected and sometimes unpleasant results, so you might try all RGB color and an RGB Transparency Blend Space and let the conversion to CMYK happen on export or output. You'll just want to make sure you don't get too far out-of-gamut—if you turn on Separation Preview you'll see the conversion to CMYK
    So here my background image is RGB even though it looks like grayscale, the pink cross is an RGB color, and the blending mode is Hard Light:
    Or a pink with a darker value:

  • Is it possible to make a background image in css link?

    I'm building tiles of services and its all done in CSS calling for the background from image files. There's text which I know I can link but I want the whole tile to be a link and just have a border appear when people mouse over it (know how to do that) but I don't know how to code the tile as a whole as a link.
    Help?

    Line 67, Column 145:         document type does not allow element "div"  here; missing one of "object", "applet", "map", "iframe", "button",  "ins", "del" start-tag
    …content" class="serviceBoxcontentBody"><span style="float: left; width: 219px;…

    The mentioned element is not allowed to appear in the context in  which       you've placed it; the other mentioned elements are the only ones  that       are both allowed there and can contain the element  mentioned.       This might mean that you need a containing element, or possibly  that       you've forgotten to close a previous element.
    One possible cause for this message is that you have attempted to  put a       block-level element (such as "<p>" or "<table>")  inside an       inline element (such as "<a>", "<span>", or  "<font>").
    But it works.   Ok, what it the proper way to do this, please. Everything else validates fine.   

  • Background image and CSS?

    I am building a page to resemble our companies website.  Right now my page is linking to some external images.  I think this maybe affecting how my background looks.  If you look at this link: http://www.ournewspace.com/melanieshefchik
    You will see a big grey box behind my body and if you look even further you will see a green box pattern behind that.   I would like that green pattern to be the entire background.  How can I get rid of that grey?
    Thanks.

    The grey you are seeing is in the actual images.  You would ned to remove the gray from the images in order for the grey to not appear.

  • ISE 1.3 portal customization - background image

    With all the simplicity to adjust the look and feel of portals in the new ISE 1.3 comes (albeit small for some) a price: I no longer see a way to configure a custom adjustments like a background image, not simply a top banner. This was doable in 1.2 via Cisco ISE Portal Builder or custom editing of html files and custom image uploading. Migrated portal still works fine. But since is not editable it's almost unusable.  Is there still a way to do full customization of the portals?

    Here are some steps on how to reference a background image using CSS and ISE 1.3
    If needing help on doing other modification to the portal outside of the basics (like moving elements or resizing) after making the change then please work with web developer experienced in javascript and CSS.
    Export default CSS from ISE:
    Click Guest Access > Configure
    Choose any Portal and click “Edit”.
    Click Portal Page Customization > Advanced Customization
    Choose “Default Blue theme” and click “Export”.
    Open file with editor (for example:Coda,Notepad etc.).
    Edit file:
    Copy and paste
    (Don’t forget to put your picture instead of http://www.your-picture.jpg):
    Add this code AFTER the Defaults theme code
    body .cisco-ise-content {
        background-color: white ;  
    body{ 
    background-image: url("http://www.your-picture.jpg")!important;
        background-size: cover;}
    .ui-dialog-contain > .ui-content {
        background: none repeat scroll 0 0 white;
    body .ui-dialog .ui-dialog-contain .ui-header {
        background: none repeat scroll 0 0 #0a569c;
    .progressWizard .ui-bar-a.step-inner {
    background: linear-gradient(#4da2f1, #4ea5f6) repeat scroll 0 0 #4ea4f4;
    Replace from the code
    .ui-body-a,
    .ui-overlay-a {
        border: 1px solid #d3d3d3 /*{a-body-border}*/;
        color: #666 /*{a-body-color}*/;
        text-shadow: 0 /*{a-body-shadow-x}*/ 0 /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #ffffff /*{a-body-shadow-color}*/;
        background: #ffffff /*{a-body-background-color}*/;
        background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{a-body-background-start}*/), to( #ffffff /*{a-body-background-end}*/)); /* Saf4+, Chrome */
        background-image: -webkit-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
        background-image:    -moz-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* FF3.6 */
        background-image:     -ms-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* IE10 */
        background-image:      -o-linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/); /* Opera 11.10+ */
        background-image:         linear-gradient( #ffffff /*{a-body-background-start}*/, #ffffff /*{a-body-background-end}*/);
    With:
    .ui-body-a,
    .ui-overlay-a {
        border: 1px solid #d3d3d3 /*{a-body-border}*/;
        color: #666 /*{a-body-color}*/;
    Replace from the code
    .ui-bar-a {
        border: 1px solid #d3d3d3 /*{a-bar-border}*/;
        background: #4ea4f4 /*{a-bar-background-color}*/;
        color: #ffffff /*{a-bar-color}*/;
        font-weight: bold;
        text-shadow: 0 /*{a-bar-shadow-x}*/ 0 /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #0a569c /*{a-bar-shadow-color}*/;
        background-image: -webkit-gradient(linear, left top, left bottom, from( #4da2f1 /*{a-bar-background-start}*/), to( #4ea5f6 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
        background-image: -webkit-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
        background-image:    -moz-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* FF3.6 */
        background-image:     -ms-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* IE10 */
        background-image:      -o-linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/); /* Opera 11.10+ */
        background-image:         linear-gradient( #4da2f1 /*{a-bar-background-start}*/, #4ea5f6 /*{a-bar-background-end}*/);
    with 
    .ui-bar-a {
        border: 1px solid #d3d3d3 /*{a-bar-border}*/;
        color: #ffffff /*{a-bar-color}*/;
        font-weight: bold;
        text-shadow: 0 /*{a-bar-shadow-x}*/ 0 /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #0a569c /*{a-bar-shadow-color}*/;
    Save file.
    Import back into ISE
    Get back to ISE.
    Open Advanced Customization/Export/Import Themes…
    Choose your file.
    Input your theme name.
    Click “Save”.
    Click “Save” theme (upon the “Language file”).
    Click “Portal test URL”.
    Enjoy your new background..
    Example of the CSS file, see attachments
    It is possible to upload portal files to the Posture Remediation repository and reference these files in custom javascript or CSS files.
    Recommendation is to use the relative path so you're not referencing a specific PSN
    Path to the uploaded files at Policy > Policy Elements > Results > Posture > Remediation Actions > File Remediation
    Relative: /auth/packages/<Package_Name>/<File_Name>Example: /auth/packages/Custom_Portal2/my-background3.jpg
    Absolute: https://psn_fqdn:portal_port/auth/packages/<Package_Name>/<File_Name>Example: https://ise13-psn1.cts.local:8443/auth/packages/Custom_Portal2/my-background.jpg

  • Can you use a swf file like a background image

    The header has a css background image and the spry menu bar
    lays over it. Is it possible to attach a swf file as the background
    image in css or even in html?
    Maybe as a background-attachment somehow? Or simply in the
    html code?
    I am using CS4 but I believe the website was created with
    CS2.

    I don't know anyone, that knows what they are doing, that uses flash for websites anymore
    There are a few holdover gaming sites that still use it, but even those guys are making the move to JavaScript, HTML5 and CSS3.  
    @bretC,
    There are far too many people using mobile & tablet devices that don't support Flash (iOS, Android, Blackberry, etc...)  It's not good business to ignore those people.
    In terms of alternative technologies, look at HTML5, CSS3 and JavaScript animations made with Edge Animate.  These are well supported on all modern devices.  Edge Animate is part of the Creative Cloud plan.  Products | Edge Animate | Adobe TV
    Nancy O.

  • HTML Emails and background images in Dreamweaver

    Hello.  I created a HTML email in Dreamweaver.  The original design came out of Indesign and had very specific background art.  I removed all the text out of the Indesign and created a jpg.  I took this jpg in Photoship and sliced and optimized it.  I imported this HTML into Dreamweaver.  Here I need to add in all the text (which is variable).  I was originally thinking that you can only place background images with CSS.  But I was told that you should not use CSS for HTML emails.  So instead I left all the background art as normal images inside of a table.  At this point I need to add text over these images.  They only way I could figure out to do it was to add a div tag right over the image and type into there.  This seemed to work fine but when I tested it in some emails all the div tags with text showed up under the table with images.  This needed to display over.  What is the best way to handle this issue?  Thank you in advance.
    Melanie

    Sorry, but you cannot layer text over images in emails.  Simplify your design or make an image with text on it in Photoshop. Use absolute URLs to images on your web server. And give people who can't see graphics and HTML pages in their email client a link to the HTML page on your web server.
    How to Code HTML Emails
    http://www.sitepoint.com/article/code-html-email-newsletters/
    Chart showing how various email clients handle CSS.
    http://www.campaignmonitor.com/css/
    Download some HTML Email Templates from the links below to get started.
    Mail  Chimp
    http://www.mailchimp.com/resources/html_email_templates/
    Constant  Contact
    http://www.constantcontact.com/email-marketing/html-email-templates/index.jsp
    Nancy  O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Background-image in login-page

    Hi,
    Can anyone tell me why I can't use relative path like "background-image: url(\css\images\pagehdr_bg.jpg)" in background image url in my login.jspx-form? Absolute path works, but as everyone knows, it's not good idea to use it. User authentication is handled by pluggable LoginModule and authentication is form-based (configured in web.xml). Is this some protection issue? How is it written url that is not absolute and works?
    Thanks in advance
    user457932

    Hi,
    did you set authorization to protect the root ? If in teh web.xml file you set the protected pattern to "/" then css is blocked until user is authorized. If you use *.jsp or *.jspx then CSS will work
    Frank

  • CSS Background Image - Newbie needs help

    Good Afternoon,
    I'm trying to place a background image in the body of my
    page. Pasted below is the code:
    Questions:
    1. When viewed in the browser, only part of the image can be
    viewed, and no vertical scroll bar is available to view the bottom
    portion of it. Is there a setting to toggle such that the entire
    image can be viewed?
    2. As part of the background image, I have text that I want
    to use as hotspots for links to other pages in the site. Do I need
    to place a table or use some other technique to enable use of
    hotspots?
    Thanks from a very Green Newbie.
    Sid

    > 1. When viewed in the browser, only part of the image
    can be viewed, and
    > no
    > vertical scroll bar is available to view the bottom
    portion of it. Is
    > there a
    > setting to toggle such that the entire image can be
    viewed?
    Background images will never force scrollbars.
    > 2. As part of the background image, I have text that I
    want to use as
    > hotspots for links to other pages in the site. Do I need
    to place a table
    > or
    > use some other technique to enable use of hotspots?
    Yes. You cannot put hotspots on background images. Be aware
    that this is
    the worst (well, publishing a page made in Microsoft
    Word/Publisher is the
    worst) way to make a web 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
    ==================
    "Sid Childers" <[email protected]> wrote in
    message
    news:eksuka$56i$[email protected]..
    > Good Afternoon,
    >
    > I'm trying to place a background image in the body of my
    page. Pasted
    > below
    > is the code:
    >
    > Questions:
    > 1. When viewed in the browser, only part of the image
    can be viewed, and
    > no
    > vertical scroll bar is available to view the bottom
    portion of it. Is
    > there a
    > setting to toggle such that the entire image can be
    viewed?
    > 2. As part of the background image, I have text that I
    want to use as
    > hotspots for links to other pages in the site. Do I need
    to place a table
    > or
    > use some other technique to enable use of hotspots?
    >
    > Thanks from a very Green Newbie.
    > Sid
    >
    > <style type="text/css">
    > <!--
    > body {
    > background: url(Homepage.jpg) no-repeat;
    > }
    > -->
    > </style>
    >

  • CSS Background Image - where is it?

    Hello, Have placed a fixed background image within my
    CSS...it looks fine when I look at it in Dreamweaver. The problem
    is when I upload to my webspace the image isn't there. Any ideas?
    These are the attributes:
    background-attachment: fixed;
    background-image: url(images/home.gif);
    background-repeat: no-repeat;
    background-position: 1px;

    dulcettones" <[email protected]> wrote in
    message
    news:f3m22g$kpu$[email protected]..> Sorry...the
    URL is:
    > www.notjustthenews.co.uk
    > The image in question goes in the top left corner and
    changes depending on
    > the section you're viewing.
    Remove: background-attachment: fixed; and you'll see the
    image shows up on
    the index page. You need to remove that on each of the rules
    you have set
    for the #top divs... some of them are missing the white
    background color
    also.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/

Maybe you are looking for