Jump to content

virtual

Advanced Member
  • Posts

    876
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by virtual

  1. The site is emulating IE7 and you already have conditional comments for IE in the header section. You can add to these to target the problem you are having and it will only affect IE. However as you have a lot of pages in your site it might be a good idea to group all the IE css into one specific style sheet and link to it using a conditional comment and place the link under the link to your main style sheet.

     

    Read this http://css-tricks.com/how-to-create-an-ie-only-stylesheet/ or Google for more info.

  2. I am having difficulty getting the cursor to turn into a magnifier in both Mozilla and Webkit browsers. In the js file, I have this line

    cursorcss: 'url(magnify.cur), -moz-zoom-in', //Value for CSS's 'cursor' attribute, added to original image

     

    which works fine with Firefox, however if I do this, neither of them work.

    cursorcss: 'url(magnify.cur), -webkit-zoom-in, -moz-zoom-in', //Value for CSS's 'cursor' attribute, added to original image

     

    I can only get one or the other to work, not both at the same time.

     

    I also tried adding this into the html file

     <script type="text/javascript">
    $("img").css('cursor', function() {
                if (jQuery.browser.mozilla) {
                   return '-moz-zoom-in';
               }
               else if (jQuery.browser.webkit) {
                   return '-webkit-zoom-in';
               }
               else {
                  return 'pointer'; 
               }
           });
    </script>
    

    but that did not work with either of the browsers.

     

    Can anyone tell me what I'm doing wrong.

  3. I even tried to come up with a made up, easy to spell, fun to say name like Google

     

    You'll probably find that everything under the sun is taken if you are looking for a dot com, even made up names. Adding design onto the word you choose would probably help though. I was just looking for a name for a store and had a hard time finding something short and catchy that was available.

  4. Oh dear Flash, unfortunately some of these sites are going to be totally unreadable on Mac iPhones and iPads. I think you should post your problem on a Flash specific forum, there aren't many Flash experts on this one. :(

     

    I noticed that there is no navigation or way to go back to the previous page if the video doesn't interest the viewer apart from closing it down (which leads to your problem). There should be navigation or a Flash button to revert to the previous page, as obviously with Flash the browser back button does not work. Maybe you could implement that and kill the close button which is giving you problems.

     

    P.S. The site, while I agree is very clean and simple, is also very user unfriendly.

  5. Hi Susie,

    This might work for you if I'm understanding what your client wants. The "susie.jpg" is 2000px wide by 800px high and absolutely awful, I just threw it together to try it out. I'm not sure what the biggest monitor width size would be. I have dual monitors at 1280px wide each and I dragged the browser window across both screens to get the right hand side to go to full limit with the content staying in the middle. I only tested in Firefox (Mac)

     

    You can see it here

    http://180virtual.com/susie/

×
×
  • Create New...