Scroll To Top

Enter a query to search our site. Note that you can use "*" and "?" as wildcards. Enclosing more than one word in double quotes ("CSS Layout") will search for the exact phrase.

06-July-2017

Peekaboo (PKB) 1.1.6

Adds ability to assign custom attributes to the pkb-item element. For example, you can now assign Lag Effect Magic behaviors to pkb-item DIVs and they will be preserved when editing the PKB instance.

Do you need the update?

You only need to update If your current version is less then 1.1.6. To be certain, open your Extension Manager and check your version number.

Downloading the updated version

To download the latest version, go to our customer service download center:

PVII Download Center

Follow the instructions to find your order or to have your order history sent to you. Once you locate your order, you will have access to the download.

Installation

  1. Unzip your download
  2. Install the extension using the Extension Manager
  3. When prompted to overwrite existing files or replace your existing version, choose Yes or Yes To All
  4. Restart Dreamweaver to complete the update process

CSS Errata Note

In some instances the arrow DIV in a PKB box will cover the content, preventing links from being accessible. This is caused by our failure to include a z-index value for the Peekaboo DIV. We have updated the default PKB CSS file in version 1.1.6. To fix earlier implementations, open your PKB CSS file and locate this rule:

.pkb-boo {
font-size: 90%;
transition: all ease .5s;
padding: 15px;
display: inline-flex;
flex-direction: column;
position: absolute;
bottom: -100%;
left: 0px;
width: 100%;
height: 100%;
}

Add a z-index of 100:

.pkb-boo {
font-size: 90%;
transition: all ease .5s;
padding: 15px;
display: inline-flex;
flex-direction: column;
position: absolute;
bottom: -100%;
left: 0px;
width: 100%;
height: 100%;
z-index: 100;
}

Prior Updates

20-Apr-17—Peekaboo (PKB) 1.1.5: Fixes issues on iOS (iPhone and iPad)