Jump to content

virtual

Advanced Member
  • Posts

    876
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by virtual

  1. Your code is like this:

    .wrapper{

    margin:auto;

    width:800px;

    padding:25px;

    background:url(images/paper_bg.jpg)0% 0% repeat;

     

    }

    change to this and your background image will appear. Note the space after the (images/etc..)

    background:url(images/paper_bg.jpg) 0% 0% repeat;

     

    It is an IE specific problem, forget the space and the image does not show

  2. They were not added by the Wisywig program, they are validation codes you add to the page when submitting to search engines such as Google, Yahoo and probably MSN. They help get your site recognized by the search engines.

  3. In your body tag

    body {

    height:100%;

    font:62.5%/1.4 Georgia,Arial,Tahoma,Geneva,Helvetica,sans-serif;

    background:#3888BC url(../images/gc-gradient.png) 0 0 repeat-x;

    color:#333333;

    padding-top: 0px;

    padding-bottom: 10px;

    padding-left: 5%;

    padding-right: 5%

    }

    The padding-left is offsetting the content from the left, also the wrap div is not in your html code.

  4. In your CSS you have repeated the background image twice, if you remove one of them your background image shows up.

     

    #servicesHeaderInner {

    background-image: url(

    ../images/servicesHeaderBg.jpg;

    background-image: url(../images/servicesHeaderBg.jpg);

    height: 429px;

    width: 900px;

    margin-right: auto;

    margin-left: auto;

    position: relative;

    }

  5. In case any of you are interested, I found the solution to my problem.

     

    Apparently all Active content on a page will always rise to the top, so to speak, including Flash, certain form elements, Java applets, and Active X controls. This means that each of these will poke through layers, and ignore the z-index of other elements. The solution is to use WMode in Flash as explained in the following article

     

    http://kb2.adobe.com/cps/142/tn_14201.html

     

    Wow, I learn something everyday...

  6. I have just tested a local site on my virtual machine and my drop down menus are not displaying over a flash file which is situated just below the menu in any of the browsers on the PC side.

     

    It all works fine on the Mac in all the browsers, just not on the PC side. The z-index is 100 so it should be showing. Have any of you had this type of issue before?

  7. Hi All,

     

    I just upgraded to IE8 on my virtual machine and wanted to know where I can get a standalone version of IE7. I already have IE6 in standalone, but for some reason the navigational links won't work in it since the upgrade. Although that's not really going to matter much as there are fewer users now with Microsoft pushing the upgrade to IE8.

  8. I know I have seen this on here somewhere but I can't seem to find it.

     

    I have inherited a very messy site that everyone has worked on and never cleaned house after. There are loads of images and files that need removing. What do you guys use to find all these redundant bits and bobs?

×
×
  • Create New...