-
AuthorPosts
-
micheltorres Friend
micheltorres
- Join date:
- March 2008
- Posts:
- 171
- Downloads:
- 4
- Uploads:
- 25
- Thanks:
- 36
- Thanked:
- 2 times in 1 posts
March 27, 2013 at 10:15 pm #186263Hello,
It is necessary that the images are 500×500 pixels in the module articles category on home?
Where should I change to fit the format of these images?My images are in wide format and this is generating an unwanted white space between them and the titles.
Thanks
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 29, 2013 at 2:50 am #488222This module doesn’t have option to define size of image but you can add css rule for it.
Open templates/ja_argo/css/custom.css file
Add new script
.brick-big {
width: 57%;
}
2 users say Thank You to Ninja Lead for this useful post
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 23, 2013 at 6:09 pm #499936<em>@Ninja Lead 366720 wrote:</em><blockquote>This module doesn’t have option to define size of image but you can add css rule for it.
Open templates/ja_argo/css/custom.css file
Add new script
.brick-big {
width: 57%;
}
</blockquote>Is it posible not square images? I would like images those are 1:1,589 width:height ratio? Thanks
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 23, 2013 at 6:45 pm #499938Ok, this don’t help. I quite this template 🙂
thanksnedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 23, 2013 at 9:18 pm #499949mate, have you solved your problem? My pictures are also in wide format.
micheltorres Friendmicheltorres
- Join date:
- March 2008
- Posts:
- 171
- Downloads:
- 4
- Uploads:
- 25
- Thanks:
- 36
- Thanked:
- 2 times in 1 posts
July 23, 2013 at 9:57 pm #499951Hi Nedzad72,
I gave up adjusting the format of the images and set my images to the module. It was pretty cool.
Good luck for you.nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 24, 2013 at 5:41 am #499982In fact I can’t. I planned move http://www.automotosvijet.com/ to this template, and because of type of pictures, Square formatt is not acceptable. But thany anyway. STay safe
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 24, 2013 at 7:34 am #499993Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 25, 2013 at 9:50 am #500131@nedzad72: I’m not quite sure what modifications you have done upon your site, would need to take a closer look at your site. Please include your site URL here for further investigation
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 29, 2013 at 4:01 pm #500502Here it is mate.
Ja_Argo demo is here:
so there are squared images.
my site contains wide formate images (580x365px), and After I upload this format I have this:
please note that unwanted white space. As I figured out, this white space is unremovable, beause I would like notsquard images and frontpage look like this (and subpages):
I belive this is not posible? Or I am wrong?
Thanks for your time and patience mate
e.g.: http://grebovic.com/ams5/
I would like change automotosvijet.com and use ja_argo instead ja_nex mate.
- Ninja Lead Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 30, 2013 at 3:23 am #500533Due to the concept, JA Argo Template needs to show big square image here with equal width and height that’s reason why we have wrote script to resize height big image.
You can remove this customize by
Open templates/ja_argo/html/mod_articles_category/brick.php file
From
jQuery (document).ready(function($){
updateHeight = function(){
$('.brick-img').each(function(){
$(this).css('height', $(this).width());
});
}updateHeight();
$(window).bind('resize', updateHeight);
})
Change to
/*jQuery (document).ready(function($){
updateHeight = function(){
$('.brick-img').each(function(){
$(this).css('height', $(this).width());
});
}updateHeight();
$(window).bind('resize', updateHeight);
})*/1 user says Thank You to Ninja Lead for this useful post
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 30, 2013 at 8:17 am #500566great!!!! THANKS
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 30, 2013 at 8:20 am #500568Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 31, 2013 at 3:34 am #500695what the problem on this page here? I have tested it on android my device but i could not find the problem.
It would be awesome if you can possibly include a screenshot and description on that particular screenshot on what you would like to do. It would help to understand the issue and give you specific answers
nedzad grebovic Friendnedzad grebovic
- Join date:
- July 2014
- Posts:
- 325
- Downloads:
- 12
- Uploads:
- 118
- Thanks:
- 83
- Thanked:
- 2 times in 1 posts
July 31, 2013 at 12:59 pm #500759I would like avoid emty space, just like at front page mate. I will put some photos and show you.
Can I move content from ja_nex (joomla 2.5) to ja_argo (joomla 3.1)??
AuthorPostsThis topic contains 16 replies, has 3 voices, and was last updated by Ninja Lead 11 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum