"...arrows.png" giving a 404 error code

Questions related to the configuration of Joomla, Templates, and Security related questions/issues
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Wed Mar 21, 2012 5:11 pm
I am using the Corporate2 template and the "Image Show".

While testing the page/speed/etc., it appears there is a "call" (request) for two separate .png files that don't exist and it is giving my test page two separate "404" errors.

The page is requesting two different arrows.png files and neither of them exist at the requested location. I TRIED just pasting in the arrows.png, but that made the site look really bad.

Is it possible this is just a minor error in the code?

Even the "demo" of Corporate2 is showing the 404 error for the call for the arrows.png:

http://www.webpagetest.org/result/12032 ... 1/details/

Note the 'red line' on the chart, it is giving a 404 for the following request:

http://[demo.gavick.com]/joomla16/apr2010/modules/mod_image_show_gk4/styles/images/arrows.png

My site is having the same error as above, but it also is giving a 404 for another call:

http://[MyWebsite.com]/templates/gk_corporate2/images/style1/arrows.png

Any idea where I can fix the code?
Also: Will this be fixed in future updates? I'm sorta picky about 404's on a page.

Thanks!
User avatar
Fresh Boarder

GK User
Wed Mar 21, 2012 5:39 pm
Hi

Thank you for your report.
It's a small error on css.

Please open this file:
../modules/modules/mod_image_show_gk4/styles/gk_corporate2/style.css

find this fragment:

Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev div,
.gkIsWrapper-gk_corporate2 .gkIsNext div { text-indent:-999em; width:23px; height:46px; background:transparent url('../images/arrows.png') no-repeat 0 0; display:none; }


replace with
Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev div,
.gkIsWrapper-gk_corporate2 .gkIsNext div { text-indent:-999em; width:23px; height:46px; background:transparent url('images/arrows.png') no-repeat 0 0; display:none; }


Cheers ;)
User avatar
Platinum Boarder

GK User
Wed Mar 21, 2012 8:37 pm
Seichinha wrote:Hi

Thank you for your report.
It's a small error on css.

Please open this file:
../modules/modules/mod_image_show_gk4/styles/gk_corporate2/style.css

find this fragment:

Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev div,
.gkIsWrapper-gk_corporate2 .gkIsNext div { text-indent:-999em; width:23px; height:46px; background:transparent url('../images/arrows.png') no-repeat 0 0; display:none; }


replace with
Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev div,
.gkIsWrapper-gk_corporate2 .gkIsNext div { text-indent:-999em; width:23px; height:46px; background:transparent url('images/arrows.png') no-repeat 0 0; display:none; }


Cheers ;)


Hi!

The above only takes care of one of the errors. As I stated in my original post, there are TWO 404 errors.
The second 404 error is as I described above and I will re-quote the second question (emphasis mine):

My site is having the same error as above, but it also is giving a 404 for another call:

http://[MyWebsite.com]/templates/gk_corporate2/images/style1/arrows.png
User avatar
Fresh Boarder

GK User
Tue Mar 27, 2012 1:36 pm
I am just checking to see if there is a fix for this error as described above?

Thanks!
User avatar
Fresh Boarder

GK User
Tue Mar 27, 2012 1:54 pm
File: \templates\gk_corporate2\css\joomla.css
Line 185
Code: Select all
.box_menu ul.menu > li { padding: 7px 20px; border-top: 1px solid #f0f0f0; background: url('../images/style1/arrows.png') no-repeat 100% 14px; }


Line 194
Code: Select all
.box_menu ul.menu > li li { padding: 7px 20px; border-top: 1px solid #f0f0f0; background: url('../images/style1/arrows.png') no-repeat 100% -1834px; }


Replace with below
Line 185
Code: Select all
.box_menu ul.menu > li { padding: 7px 20px; border-top: 1px solid #f0f0f0; background: url('../images/arrows.png') no-repeat 100% 14px; }


Line 194
Code: Select all
.box_menu ul.menu > li li { padding: 7px 20px; border-top: 1px solid #f0f0f0; background: url('../images/arrows.png') no-repeat 100% -1834px; }


See you around...
User avatar
Platinum Boarder


cron