Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 08-08-2015 01:54:31

Cww2
Member
Registered: 08-15-2008
Posts: 127

Review & email a friend are popping at btm

Both the review area & the email a friend area are popping up below the page footer - any ideas on how to fix this?

Thanks
Chris

Offline

 

#2 08-10-2015 07:28:43

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Review & email a friend are popping at btm

This sounds like an issue with the HTML elsewhere in your skin.  Please post a link.


Nick Hendler

Offline

 

#3 08-10-2015 09:30:14

Cww2
Member
Registered: 08-15-2008
Posts: 127

Re: Review & email a friend are popping at btm

Offline

 

#4 08-11-2015 06:36:28

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Review & email a friend are popping at btm

Somehow you've removed the absolute positioning on the qtips.  Not sure how.  To fix, edit your active skin's overrides.css file and find the following:

Code:

.qtipcustom_default, .qtipcustom_popup, .qtipcustom_tooltip {
    border-radius: 6px;
    box-shadow: 2px 2px 2px #555555;
}

Change to:

Code:

.qtipcustom_default, .qtipcustom_popup, .qtipcustom_tooltip {
    border-radius: 6px;
    box-shadow: 2px 2px 2px #555555;
    position: absolute; /*ADDED THIS LINE TO FIX QTIP ISSUE */
}

Nick Hendler

Offline

 

Board footer