Announcement

Collapse
No announcement yet.

Bounce Page Not Bouncing

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

    Bounce Page Not Bouncing

    Hi All... Just upgraded from Actinic 7 to Version 9 Business+

    I'm strugling with the PSP Bounce Page... basically I had to amend it to get it to look like our existing design (all other pages seemed to update ok), I took what seems to be the Actinic code to the new page... its looks the part but it just seems to freeze. Anyone any idea what I may of overlooked?

    Folk

    #2
    Could you let us see a URL or post the code for the <head> section of your overall layout used by your PSP page here please.

    Comment


      #3
      Hi Chris,

      The code below is from the page that does work (This was the default Bounce page on upgrade) I replaced this text with our existing template page however once uploaded it does not 'bounce' to protx. I then substituted our pages 'head' code for the code below but still no bounce.


      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
      <html>
      <head>
      <title><actinic:variable name="PageTitle" /></title>

      <actinic:variable name="BaseHref" />

      <actinic:variable name="MetaTags" />

      <actinic:block if="%3cactinic%3avariable%20name%3d%22IsP3PPolicyUsed%22%20%2f%3e"><link rel="P3Pv1" href="<actinic:variable name="P3PFullPolicyLink" />"></actinic:block>

      <link href="actinic.css" rel="stylesheet" type="text/css">

      <style type="text/css">
      <body bgcolor="#ffffff">
      </style>

      <actinic:variable name="JavaScriptFunctions" />

      <script type="text/javascript"><!--//--><![CDATA[//><!--

      sfHover = function() {
      var sfEls = document.getElementById("reflective_menu_top").getElementsByTagName("LI");
      for (var i=0; i<sfEls.length; i++) {
      sfEls[i].onmouseover=function() {
      this.className+=" sfhover";
      }
      sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
      }
      }
      }
      if (window.attachEvent) window.attachEvent("onload", sfHover);

      sf1Hover = function() {
      var sfEls = document.getElementById("reflective_menu_left_top").getElementsByTagName("LI");
      for (var i=0; i<sfEls.length; i++) {
      sfEls[i].onmouseover=function() {
      this.className+=" sfhover";
      }
      sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
      }
      }
      }
      if (window.attachEvent) window.attachEvent("onload", sf1Hover);

      sf2Hover = function() {
      var sfE2s = document.getElementById("reflective_menu_left_top_products").getElementsByTagName("LI");
      for (var i=0; i<sfE2s.length; i++) {
      sfE2s[i].onmouseover=function() {
      this.className+=" sfhover";
      }
      sfE2s[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
      }
      }
      }
      if (window.attachEvent) window.attachEvent("onload", sf2Hover);

      //--><!]]></script>

      </head>

      Comment


        #4
        <style type="text/css">
        <body bgcolor="#ffffff">
        </style>
        Replace this with
        Code:
        <style type="text/css">
        body {
        bgcolor: #ffffff;
        }
        </style>
        This could easily mess up the bounce.

        Also make sure your overall layout's main opening <body> tag looks like this:

        <body onload="<actinic:variable name="OnLoadScript" value="PreloadImages" />">

        Comment


          #5
          I think you should use this instead:

          Code:
          <style type="text/css">
          body {
          background: #ffffff;
          }
          </style>

          Comment


            #6
            Originally posted by leehack
            I think you should use this instead:

            Code:
            <style type="text/css">
            body {
            background: #ffffff;
            }
            </style>
            Better still to drop it into the actinic.css


            Bikster
            SellerDeck Designs and Responsive Themes

            Comment


              #7
              The site may have a backgroud color other than white, in which case this should be styled within the page to overwrite, I didn't know the situation, so didn't comment. If the same background color is for all pages, then I agree with Jont, I was just merely providing correct CSS.

              Although if this was the case, then surely, theme config would be the correct place to set the background color?

              Comment


                #8
                Thanks... I will try and post the result.

                Comment

                Working...
                X