Bkacground/CSS images not showing

Since earlier this month I have been having problems with DW.
I'm sure it's something I did since I'm sort of new to this but
here it goes. I'm using DW MX by the way.
I run a small diecast site and DW has always been my editing
program and its worked fine until now. My site uses CSS and usually
DW would load all the necessary image files like the menus,
background images and icons, etc. My actual diecast photos and a
few of the menu buttons are hosted at Imageshack and most of them
display correctly in DW, but everything thats on the server hosted
by Byethost doesn't show. It also doesn't correctly display the
layout of the CSS I chose, but rather it looks like a plain
unorganized page. I thought the problem might have been that DW
doesn't actually display the images from the server, but rather
from the local disk instead. The local folder these files were in
might have been moved to somewhere else on th disk? I have tried
everything I could think of but nothing has worked. Any help is
very much appreciated!
Justin

> DW won't display any content that is not available
locally.
Sure will - it handles images, css, js, and applets with
external links.
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
==================
"Nick Barling" <[email protected]> wrote in
message
news:[email protected]...
> This sounds like a file/folder management problem. DW
won't display any
> content that is not available locally. To see content
that is only
> available
> at the server you need to view your page from within a
browser.
>
> If you have content stored locally and it is not visible
then you need to
> check the file path to each piece of content that is not
showing. Check
> that
> you are using document - relative links and not root
relative links.
> Check the
> location and content of your local folders; they should
not have moved on
> your
> local disk unless you moved them. As it is unlikely that
you moved the
> file
> locations without knowing it I suspect the problem is
one of relative
> paths.
>
> Look at your local file structure in the DW site local
view and then check
> your remote view file structure, you may find the
problem there.
>
> The CSS style sheet, which I assume is an external style
sheet attached
> the
> your html page will only be visible locally if you have
linked it
> correctly to
> the html page it is styling. View the page locally and
check that the CSS
> style sheet is linked/referenced corectly in the file
structure. If your
> page
> shows CSS styling when viewed locally but does not show
remotely, ie when
> viewed in a browser via the url address with the page
served from the
> server,
> then check that you have uploaded the CSS style sheet to
the correct
> location.
>

Similar Messages

  • New to dw  css images not showing

    I made a practice site on one computer with dw using a css temp .  my folder has html-images-template-default-index i click on index it all works
    i put it on my mem stick put the same folder on another computer with apache in hdocs it works but its not showing the css images everything but
    it must be a simple fix   it all worked on the computer with dw  and thats not opening dw   thank you ken

    when css images refuse to show up in the browser after a site was copied to a new pc or the server itself it's usually because the path to your image in the css is not valid anymore
    Most common causes of these problems are:
    - using absolute links to the local file system instead of relative links..  If your path to the image starts with a drive letter/name like Macintosh HD: or C:\ for example, chances are it won't work anywhere else.
    - folder name is capitalized like this: "Images" in the css while its "images" on the actual drive - same goes for file names & extensions (Picture.JPG is not always the same as picture.jpg)
    - you forgot to copy the folder/image in question to the new drive - or copied it to the wrong place in the "folder tree structure".
    - you moved/renamed the image folder or the image file itself  without updating your css.
    Theres no magic to it, no simple or complicated fix. All there is is to make sure that all paths used in the css exactly match the file structure on the drive and avoid absolute links.
    If you could post the contents of your css file here - or give us a link to the server if your page is already online, we could prolly be more specific in our answers.
    HTH,
    Stephan

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • Problem with Css styles not showing in live view or when i browse

    I am using Mac osx 10.6 and building website with Dreamweaver CS5.  Sometimes div tags i create not showing styles or rendering in live view or when I browse but  showing in design view. I looked in dreamwever faq and they talk about not showing in design view to toggle the display styles. That is not the problem becuase it is check marked and I tried turning off and turning on and made no difference.I am using firefox browser.
    It happened before the other day too. But all of my other pages in this site that i have created the same way building with div tags and css styles. So not sure what the problem is. Maybe someone has a suggestion here.
    Johanna

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Portfolio</title>
    <style type="text/css"></style>
    <link href="css/jbstyles.css" rel="stylesheet" type="text/css" />
    <style type="text/css"></style>
    </head>
    <body>
    <div id="wrapper">
      <div id="mainnav">
        <div id="navbar">
          <ul>
            <li><a href="index.html"><br />
            </a></li>
    <li>
              <ul>
                <li><a href="index.html">          Home</a><a href="about.html">About</a></li>
                <li><a href="portfolio.html">Portfolio</a><a href="contact.html">Contact</a></li>
              </ul>
            </li>
          </ul>
      </div>
        <div id="contentinside">
          <div id="navbar2">
            <ul>
              <li><a href="design.html">Design</a></li>
              <li><a href="multimedia.html">Multimedia</a></li>
              <li><a href="webdesign.html">Web Design</a></li>
            </ul>
          </div>
          <div id="mm1thumb">Content for  id "mm1thumb" Goes Here</div>
          <div id="mm2thumb">Content for  id "mm2thumb" Goes Here</div>
        </div>
        <img src="images/multimsidebar.gif" width="212" height="615" alt="mmsdbr" longdesc="http://multimsidebar" />
      <div id="footer">
        <p> </p>
        <p>Johanna Bresnahan</p>
        <p>Web &amp; Graphic Design - http://www.johannabresnahan.com</p>
        <p> email: [email protected] ....phone....857•991•5717<br />
      </p>
    </div>
    </div>
    <!--end wrapper--></div>
    </body>
    </html> 
    Here is the html code above. not sure how to attach my file so get a visual. This is the first time I have used this forum.
    Johanna

  • DIV Style background image not showing

    Hey Friends - can anyone take a look at line 136 to show why my background-image is not showing in this DIV Style?
    http://www.gratefulcreative.com/Andre_Madiz/index.html
    Thanks in advance!
    ken d
    creative director
    grateful creative
    www.gratefulcreative.com

    You have no width or height set for that element so it can not show an image unless you make the div at least the same size as the image.
    <div style="background-image:url(http://www.gratefulcreative.com/Andre_Madiz/images/bottom_text.png);ba ckground-repeat:no-repeat; width:871px; height:483px;">
    You may also want to consider adding this to your main css file and giving the div an id which will help you out in the future.

  • HTML Signature Problem - Images not showing

    Hi all,
    I've got some HTML signatures that I use in Mail (v4.3) on Snow Leopard (10.6.4). They were created quite a while ago and have been working fine. BUT... I need to update them to change some of the information. So, I went through the usual rigamarole:
    - Edit the HTML file
    - Open the HTML file in Safari (v5.0.2)
    - Save the file as a webarchive from Safari
    - Find the appropriate file in the ~/Library/Mail/Signatures folder
    - Replace the file with the new webarchive (renamed)
    When I do this, now, Mail will not show the image that I have in the signature (which is a background image placed in the file using CSS and referenced as a URL from my web server).
    Does anyone know why the old signature (created the same way, but using an old version of Mail & Safari) works... but doing it all over again using the current version doesn't?
    Thanks!

    Anything you paste in the HTML is your responsibility. iWeb doesn't care about it. If it doesn't work, too bad.
    Perhaps Posterous doesn't like to be displayed.
    Ask them.
    And instead of pasting garbage (not pretty stock standard) you may want to consider using proper code  :
    <iframe src="http://hamptoncycles.posterous.com/" frameborder="0" width="900" height="1050" scrolling="no" allowTransparency="true"></iframe
    You'll never now if that is the problem.

  • Images Not Showing On Page

    I've been working with Foundation PHP for Dreamweaver and
    suddenly noticed that the Shadow images on the right rib of the
    Index page as well as the footer images are not showing on my
    browser. I'm using IE6.
    I've looked at the codes in the index pabe and the BASIC and
    BLUEBELLS css pages as closely as possible and can't see what is
    going on.
    Please can David and anybody out there look at it and tell me
    why this is happening. maybe I'm missing out on something. i HAVE
    INCLUDED MY CODE FOR BLUEBELLS.CSS, INDEX.PHP AND BASIC.CSS
    Thanks

    Hi all. It looks like Mr David Powers is not around. Please
    can anybody work out what is going on here.

  • Image not showing for podcast

    Hello, I can't seem to get my image to show in my podcast. Everything else checks out OK. prettygoodgig uses Wordpress and feedburner. The image shows on the feedburner site. It has been about 3 weeks and still does not show in itunes.
    I have tried changing the name and location of the image but have had no luck.
    Here is the xml code for the podcast up to the first episode:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?>
    <?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?>
    <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
    <channel>
    <title>pretty good gig podcast</title>
    <link>http://prettygoodgig.com/wordpress</link>
    <description>Interviews and conversations with musical people.</description>
    <lastBuildDate>Tue, 25 May 2010 14:10:11 +0000</lastBuildDate>
    <generator>http://wordpress.org/?v=2.9.2</generator>
    <language>en</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/prettygoodgig/idai" />
    <feedburner:info uri="prettygoodgig/idai" />
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
    <media:copyright>copyright 2010</media:copyright>
    <media:thumbnail url="http://prettygoodgig.com/images/ituneslogo.jpg" />
    <media:keywords>musicians,singer,songwriter,recording,music,marketing,music,care er,performing,gigs</media:keywords>
    <media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Music</media:category>
    <itunes:owner>
    <itunes:email>[email protected]</itunes:email>
    <itunes:name>Bill Kahler</itunes:name>
    </itunes:owner>
    <itunes:author>Bill Kahler</itunes:author>
    <itunes:explicit>no</itunes:explicit>
    <itunes:image href="http://prettygoodgig.com/images/ituneslogo.jpg" />
    <itunes:keywords>musicians,singer,songwriter,recording,music,marketing,music,car eer,performing,gigs</itunes:keywords>
    <itunes:subtitle>Conversations and interviews with musical people</itunes:subtitle>
    <itunes:summary>This is a podcast where we talk to musicians about their experiences and share stories and advice, etc. We will also be talking to engineers about the recording process, production, gear etc. Other potential podcasts will feature subjects like teaching, buying a guitar, theory, inspiration etc.</itunes:summary>
    <itunes:category text="Music" />
    Thanks,
    billkahler
    prettygoodgig.com

    iTunes is not using the Feedburner-generated feed (which appears to be what you quoted: I can't examine the original because you haven't quoted the URL): it is using the Wordpress-generated feed which presumably you also submitted to Feedburner. This feed does not contain an 'itunes:image' tag, which is why there is no image in the Store.
    No amount of messing about with the Feedburner feed xml is going to affect the Store. You need to either a) add the appropriate tags to the Wordpress feed at the URL quoted above, or b) put a redirecting tag into that feed so that iTunes will transfer its attention from that to the Feedburner feed - the method is described here:
    http://www.apple.com/itunes/podcasts/specs.html#changing
    Be extremely careful if you choose option 'b': if you make an error in the URL for the feed you are redirecting to you will *not be able to get iTunes back to the correct feed*; and once you are using Feedburner's feed you will not be able to get at it to redirect away from it should you ever wish to do so in future. You should also make absolutely sure that the Feedburner feed is OK - check it at
    http://www.feedvalidator.org

  • Images not showing (dreamweaver)

    Hi, I don't know if this question is in the right location as I am new to this. But in dreamweaver CS6 the images show up fine in design and live view. But once it is published the images don't show. All of the images are in the root folder in the right place. My website is lukecoburn.co.uk any help would be appreciated.

    Hi --
    I am having a similar problem...except my images are NOT showing up within Dreamweaver CS5 but ARE showing up in my browser.  I am a very beginner at DW so forgive my ignorance.  I am bothered that i can't see a couple images (my logo) in my main header in Dreamweaver...and then another image in my header3 and have to upload the stuff to see them.  What could I have done wrong, please?  It's kind of crazy, isn't it?  I hope the code I've provided is helpful.  Thanks in advance for anyone that responds.
    here's my code in my main file where my logo doesn't show up: 
         main header:
         <!-- header begins -->
         <div id="header">
          <div id="logo">
             <h3><a href="#" id="metamorph"
                 >Thumbs-Free&#8482; Grips for Mobile Devices</a>        </h3>
                <blockquote>
                  <blockquote>
                         </blockquote>
                 </blockquote>
                  <br /> 
                   (etc...with other stuff...and then)
         </div>
         <!-- header ends -->
         css code:
              #bg {
               background: url(images/LH-GYG-Logo-GLOW-2013.png) left top no-repeat;         
               width: 1000px;
    Here's my header3 stuff in the main file where my banner doesn't show up:
         <div class="header3">
             <div class="items">
              <div class="item">
               <div class="header3"></div>     
              </div> <!-- item -->
             </div> <!-- items -->
         <div class="cont_top"></div>
         </div>
    And here's my css related code:
    .header3
    width: 870px; height: 229px;
    background: url(images/Fall-Back-To-School-Special-2013b.jpg) no-repeat;

  • Spry Bug? Background Colors/Images not showing in IE6/XpP

    I'm trying to wrap up my site for MiniMAX SE7EN (Cheap plug,
    it's on 6/26 in DC) and I've got a Spry Accordion Component I used
    in Dreamweaver CS3 to display all the speakers and then I switched
    the CSS file to allow for different colors and a background image
    to show through. Seems fine in Firefox and IE7 but in IE6 for PC's,
    it appears black and only black. Is this a Spry bug or something I
    screwed up with regarding the CSS?
    http://www.minimaxconference.com/

    I am having the same problems in IE7. I'm using the latest
    version of everything (Spry 1.6.1 and javascript file version 0.12)
    and at first I was having the problem on my drop down menus
    appearing horizontal with all the correct styles but when I changed
    the rule ul.MenuBarHorizontal ul to position: relative; the drop
    downs appear vertical now but I have no beige border around the
    whole ul anymore and I'm getting white space inbetween list items.
    http://www.wusf.usf.edu/Header_Nav_Footer_newStyleSheet.cfm
    so if anyone has any advice I'd much appreciate it. Also i'm
    using 1px width on my borders no decimals.

  • Image not showing in Abobe integrated with Java WebDynPro

    Hi All,
    Image is not showing in Abobe integrated with Java WebDynPro.
    I did the following:
    Added the image field in adobe form. in URL value set the value of context node binding. Binding set to none and size set to Use Original Size.
    Then in script editor i wrote
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    at innitialize , javascript and client.
    I can see the image from the same url context value if image field is created directly in WebDynPro View.
    Can anyone suggest what is missing?
    Thanks and Regards,
    Nuzhat

    Try changing your line of code for this one
    this.value.image.href = xfa.record.Images.URL;
    Check that the url passed by scripting is correct with a messageBox for example.
    You can also try assigning a hardcoded url at scripting level to check if its works.
    Best regards, Aldo.

Maybe you are looking for

  • Typing text in Mail disappears in landscape mode

    Hello, I believe that I have a bug with my Mail for iOS. When I type in Mail in the landscape orientation, part of what I type disappears.  When I tilt the phone back to portrait it returns, and disappears again when back into landscape. See image be

  • Internal Error 2502 - JRE (Java SE Runtime 5.02u22) ...please help!

    Hi Everyone, I am setting up an account to submit documents to the FDA through an electronic submission gateway. It's been one thing after the other. I finally made progress on the checklist. The next requirement is to download JRE and JCE. Anytime I

  • Poor sound quality on some iTunes songs

    Downloaded some songs from iTunes and realized a really poor sound quality on some files. The worst example is "Precious" from "Depeche Mode" (Album version). It seems to me that the AAC file is encoded at a much too high level, so its overdriven and

  • HT4623 Why won't my phone activate?

    I just updated my iPhone 4S to iOS7 and my phone won't "activate" over cellular data OR wifi.

  • DIrecting iPhoto to open from my WD Passport rather than the iMac itself

    We have recently taken over 15000 photos off of out 2005 iMac iPhoto 5 because the system kept crashing. We placed all of the photos onto a WD Passport. My question is how do I go about having iPhoto open from my WD Passport and not on the iMac? Idea