Announcement

Collapse
No announcement yet.

Pop out box

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

    Pop out box

    Hello, if you look at this page http://www.orthobed.co.uk/acatalog/B...Mattress2.html it is to wordy to me I would like it to read

    "Breasley Flexcell 500 Mattress
    The Breasley Flexcell 500 mattress is the first in the Breasley Flexcell range.
    The core of the mattress is made from premium quality foam from British Vita and you can be assured that it conforms to all relevant regulations for UK domestic use.
    The upper layer of the Breasley Flexcell 500 mattress is 5cm of PREMIUM grade Visco-Elastic foam supported by a foundation layer of British made Reflex foam to give a supportive comfortable nights sleep. Click here for more..
    With the click here opening a pop out new window sized to about 400 x 400 with a close button just like an extended info page.
    Cheers Steve

    #2
    You can use a a stripped down product layout instead of a Fragment one to do this.

    Locate the product layout you are using in the Library. Right-click it and choose Copy. Rename that copy to be Info Only Product. Remove everything from that layout except the ProductDescription and ExtendedInformationLinks.

    Now use that layout instead of the Fragment one and set the Extended Info to contain your extra text.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Awesome, done that, just one thing I am using 10 4 and I have typed in the box for the text link to extended info "click here for more" how do I customise this to blue?
      BIG THANKS

      Comment


        #4
        Don't know. Look up embedded HTML in the help.

        Another way to do this is to have the text automatically expand. No special layout needed. Try pasting this into a Fragment or Product description (NB only use once on a page).
        Code:
        Introductory text that always shows.
        !!<<a href="#" onclick="var x=document.getElementById('frag').style;x.display=(x.display=='none')?'block':'none';this.innerHTML=(this.innerHTML=='More...')?'Less...':'More...';">More...</a><br /><div id="frag" style="display:none">>!!
        Text that won't show until "More..." is clicked. 
        !!<</div>>!!
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Hi Norman,
          I have used the standard button which looks fine, thank you very much for the help.

          Comment


            #6
            If you're using the pop-up, then it may end up hidden behind other windows if the customer doesn't close it each time they use it.

            Fix this by editing actiniccore.js (in your Site folder) and look for the line:
            Code:
            	window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
            Amend it to be:
            Code:
            	window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable').focus();
            Norman - www.drillpine.biz
            Edinburgh, U K / Bitez, Turkey

            Comment


              #7
              Now your spoiling me

              Comment


                #8
                It's an 8 character patch ".focus()" that fixes a real customer annoyance. I've told Actinic numerous times about this, over several years, and it's still not been implemented.
                Norman - www.drillpine.biz
                Edinburgh, U K / Bitez, Turkey

                Comment

                Working...
                X