Announcement

Collapse
No announcement yet.

Extended info help needed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Extended info help needed

    I need a pop up to look like this site

    http://www.blinkred.com/gallery/pro...oduct%5Fid=3391

    when you click on an image

    any pointers would be great

    and I would like to use the standered extended info if poss

    #2
    sorry link may not work try this one

    http://www.blinkred.com/

    click on a pic and then click for more info to see the pop up needed

    Comment


      #3
      Adapting Classix's JavaScript from the previous thread, what you need to do is edit actiniccore.js and replace
      Code:
      function ShowPopUp(sUrl, nWidth, nHeight)
        	{  
      	window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
      	}
      with
      Code:
      function ShowPopUp(sUrl, nWidth, nHeight)
      	{
      	w = screen.availWidth - 10;
      	h = screen.availHeight - 20;
      
      	features = "width="+w+",height="+h+",left=0,top=0";
      	features += ",scrollbars=0,resizable=0,location=0";
      	features += ",menubar=0,toolbar=0,status=0";
      
      	window.open(sUrl, 'ActPopup', features);
      	}
      That will give you a pop-up window that fills the entire window.

      You then need to edit the default Extended Info Default Page Layout template (accessed via 'Design | Options | Layouts') and arrange the elements within this template as required.

      Comment

      Working...
      X