images are not load

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
Sun Oct 14, 2012 11:18 pm
hello i put my images in a slide show but it display in a smaller size. i prove modules and is the same result.
My page is http://www.solucioneswebmexico.com/kenwood/

hope some help
User avatar
Fresh Boarder

GK User
Mon Oct 15, 2012 1:08 am
Please edit following file which your slideshow module uses the same class as joomla.css file which gets its css value from which shows the image smaller.

File: css/joomla.css
Line: 166 which is below
Code: Select all
section img {
    height: 80px !important;
    width: 256px !important;
}

Remove all code or only remove !important from above code so it looks as below
Code: Select all
section img {
    height: 80px;
    width: 256px;
}

If you have only removed !important then you need to assign your slideshow height and width. So add below code in to css/override.css and enable css override from template settings > advanced settings > css override "on".

Code: Select all
.box_skitter .image img {
    width: 860px;
    height: 363px;
}


See you around...
User avatar
Platinum Boarder

GK User
Tue Oct 16, 2012 12:49 am
thanks for help but in continue showing some errors for example i put my gallery to 860x363px and the image have the same values. But when i put in the slideshow they are bigger so they show up correct. Itry with two differents galleries and give me the same error

hope some help
User avatar
Fresh Boarder


cron