Bug - pink pagination background on blue template

Create fresh and professional look of personal or blog websites with AppsPro Tech
GK User
Thu Jun 07, 2012 11:43 pm
Apps pro tech 3.2.1
Blue background

After refreshing the page pink pagination appear (screenshot)

<div class="gkIsPagination">

Code: Select all
.gkIsWrapper-gk_appsprotech .gkIsPagination::before, .gkIsWrapper-gk_appsprotech .gkIsPagination::after {
background:
transparent url("http://localhost/joomla/modules/mod_image_show_gk4/styles/gk_appsprotech/images/pagination_lines.png") no-repeat center 0;
content: "";
height: 50px;
width: 40%;
right: 0;
position: absolute;
z-index: 101;
}


Bug is visible on the front page.


Changed font color:

gkIsWrapper-gk_appsprotech .gkIsText h2 a {
color: #FFC9B1;}

instead of blue font

.gkIsWrapper-gk_appsprotech .gkIsText h2 a {
color: #BAE3FF;
like was before in demo quick start package. Somebody messed the code or my pc is going crazy :)

Quick start package

http://www.screencast.com/t/2A5AS4kX


New 3.2.1 template
http://www.screencast.com/t/NznCGR49Wne

One more question:

Why code console in Google Chrome showing path to css files in v 3.2.1 template eg (screenshot):
Code: Select all
 gk.stuff.css :22

and in quick start demo package showing something like this
Code: Select all
/apps/: 140
/apps/: 263 etc.


It's any possibility to display path like it was in quick start demo package instead of normal file names?


Regards

Kamil
User avatar
Junior Boarder

GK User
Thu Jun 07, 2012 11:57 pm
OK - I'm found out answer for my last question - it's prefix functionality from Govern framework :)
User avatar
Junior Boarder

GK User
Fri Jun 08, 2012 12:07 am
Enabling "Use style CSS" on module settings resolved problem with arrows styling. :-D Thanks to @Seichinha. but still pink pagination and custom font color appear...
User avatar
Junior Boarder

GK User
Fri Jun 08, 2012 12:22 am
Hi

It's probably a browser cache issue, because from my side i can't reproduce the problem.
Anyway check if you have "CSS cache" option enable on template parameters.

The second question, please go to template parameters > advanced and disable "Use prefixfree
" option.

Cheers
User avatar
Platinum Boarder

GK User
Fri Jun 08, 2012 12:36 pm
I'm deleted all cache on both browsers : Chrome and Firefox and problem exist

Image Show GK4ver. 1.26 on quick start package - working OK and pagination below image show have light blue color.

Try to upgrade to Image Show GK4 ver. 1.28 (in module settings Use style CSS - ON) and you will see pink/orange? pagination after chnging to blue backround and image show description as well have different color.

On clean Joomla instalaltion and Image Show GK4 ver. 1.28 the same problem exist. C

an you provide me link to download old Image Show GK4 ver. 1.26 package?

http://www.screencast.com/t/u9uLUbHt3C6

Regards
User avatar
Junior Boarder

GK User
Fri Jun 08, 2012 12:59 pm
When blue background is selected wrong css is loaded: (try to refresh page)

Code: Select all
.gkIsWrapper-gk_appsprotech .gkIsPagination::before, .gkIsWrapper-gk_appsprotech .gkIsPagination::after {
background:
transparent url('images/pagination_lines.png') no-repeat center 0;

and this is ping/orage background

and cerrect should be:

Code: Select all
.gkIsWrapper-gk_appsprotech .gkIsPagination::before, .gkIsWrapper-gk_appsprotech .gkIsPagination::after {
background-image: url('../images/style3/pagination_lines.png');
}


which is blue pagination

As well in slideshow is loaded wrong css (style.css:40)

Code: Select all
.gkIsWrapper-gk_appsprotech .gkIsText h2 a {

color:
#FFC9B1;

}


instead of style3.css:40
with light blue font color:

Code: Select all
.gkIsWrapper-gk_appsprotech .gkIsText h2 a {
color:
#BAE3FF;
}
User avatar
Junior Boarder


cron