Results 1 to 3 of 3

Thread: PHP Photo Album script v2.11 | IE8 problem

  1. #1
    Join Date
    Oct 2008
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Unhappy PHP Photo Album script v2.11 | IE8 problem

    1) Script Title: PHP Photo Album script v2.11

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...photoalbum.htm

    3) Describe problem: In my site after the 1st click on a picture the IE8 doesn't respond to more clicks. On your site it works flawless.

    Please advise...
    Last edited by dothemath; 12-08-2009 at 11:03 AM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Remove this from your style sheet (highlighted):

    Code:
    body {
    
    	margin: 0;
    	padding:0;
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 12px;
    	line-height: 1.5em;
    	color: #000;
    	width: 100%;
    	display: table;
    	background: #000d0d;
    	direction: rtl;
    
    }
    But then your text will be messed up, so add this (highlighted) to the stylesheet right after that, so you will have:

    Code:
    body {
    
    	margin: 0;
    	padding:0;
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 12px;
    	line-height: 1.5em;
    	color: #000;
    	width: 100%;
    	display: table;
    	background: #000d0d;
    }
    body * {
    	direction: rtl;
    }
    This will fix IE 8 and preserve your rtl text.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    dothemath (12-08-2009)

  4. #3
    Join Date
    Oct 2008
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thank you very much!
    Solved!
    Last edited by dothemath; 12-08-2009 at 11:01 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •