-
AuthorPosts
-
emilion Friend
emilion
- Join date:
- August 2006
- Posts:
- 71
- Downloads:
- 10
- Uploads:
- 4
- Thanks:
- 21
- Thanked:
- 5 times in 1 posts
May 11, 2014 at 10:22 pm #197634Hello,
How can I change the color and the text of the module “Recent Projects – View All”?
Thanks.Radonja Djurisic FriendRadonja Djurisic
- Join date:
- September 2014
- Posts:
- 316
- Downloads:
- 180
- Uploads:
- 113
- Thanks:
- 66
- Thanked:
- 72 times in 15 posts
May 12, 2014 at 12:06 am #534528Hello Emilion
u can create custom.css file in template/css folder
and u can add this code in custom.css
.category-module .project-item.project-item-more > h3
{
color: #00FF00;
}
.category-module .project-item.project-item-more > .btn-border
{
color: #FF0000;
}
.category-module .project-item.project-item-more > .btn-border:after
{
background-color: #00FF00;
}
.row-feature.row-feature-full .container > .row
{
background: none repeat scroll 0% 0% #0000FF;
}
Play with # (colors)
1 user says Thank You to Radonja Djurisic for this useful post
Radonja Djurisic FriendRadonja Djurisic
- Join date:
- September 2014
- Posts:
- 316
- Downloads:
- 180
- Uploads:
- 113
- Thanks:
- 66
- Thanked:
- 72 times in 15 posts
May 12, 2014 at 12:19 am #534529Find this file in
templates/ja_sugite/language/en-GB/en-GB.tpl_ja_sugite.ini
around 138 line
;Template Custom
TPL_VIEW_ALL ="View all"
TPL_RECENT_PROJECTS ="Recent Projects"
if u want to translate to your language u can add this in your language ini files
1 user says Thank You to Radonja Djurisic for this useful post
emilion Friendemilion
- Join date:
- August 2006
- Posts:
- 71
- Downloads:
- 10
- Uploads:
- 4
- Thanks:
- 21
- Thanked:
- 5 times in 1 posts
May 12, 2014 at 9:21 am #534605Thanks you very much tolja!
emilion Friendemilion
- Join date:
- August 2006
- Posts:
- 71
- Downloads:
- 10
- Uploads:
- 4
- Thanks:
- 21
- Thanked:
- 5 times in 1 posts
March 2, 2015 at 3:49 pm #561248Hello!
Suddenly I am not able to change the text for “Recent Projects”.
Now I want to use for other thing… “Nuestros servicios” But Changing the text on language/en-GB/en-GB.tpl_ja_sugite.ini nothing happen… I deleted the cache of joomla and of the browser… What could be happening?Thanks
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 4, 2015 at 11:02 am #561569<em>@emilion 461086 wrote:</em><blockquote>Hello!
Suddenly I am not able to change the text for “Recent Projects”.
Now I want to use for other thing… “Nuestros servicios” But Changing the text on language/en-GB/en-GB.tpl_ja_sugite.ini nothing happen… I deleted the cache of joomla and of the browser… What could be happening?Thanks</blockquote>
Please give me URL of your site here, I will help you to check it
emilion Friendemilion
- Join date:
- August 2006
- Posts:
- 71
- Downloads:
- 10
- Uploads:
- 4
- Thanks:
- 21
- Thanked:
- 5 times in 1 posts
March 4, 2015 at 6:35 pm #561632Thanks Ninja. The url is http://www.emilionavas.com
I can send you by PM the admin password. I opened a ticket with the information if is useful to check too.Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 5, 2015 at 11:43 pm #561812<em>@emilion 461565 wrote:</em><blockquote>Thanks Ninja. The url is http://www.emilionavas.com
I can send you by PM the admin password. I opened a ticket with the information if is useful to check too.</blockquote>I did not find the your ticket ID, you can pm me admin login of backend site, I will help you out.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 6, 2015 at 12:29 am #561814<em>@emilion 461565 wrote:</em><blockquote>Thanks Ninja. The url is http://www.emilionavas.com
I can send you by PM the admin password. I opened a ticket with the information if is useful to check too.</blockquote>I just got the info of your ticket. I checked on templates/ja_sugite/html/mod_articles_category/projects.php file but it’s very hard to detect the define text below on your site
<blockquote>TPL_RECENT_PROJECTS</blockquote>
But you can try to use my solution below
+ Open templates/ja_sugite/html/mod_articles_category/projects.php file
find and change
<h3><?php echo JText::_('TPL_RECENT_PROJECTS'); ?></h3>
to
<h3><?php echo JText::_('TPL_RECENT_PROJECTS_NEW'); ?></h3>
+ Open language/en-GB/en-GB.tpl_ja_sugite.ini file and add new rule
TPL_RECENT_PROJECTS_NEW ="Nuestros servicios"
Let me know if it helps
emilion Friendemilion
- Join date:
- August 2006
- Posts:
- 71
- Downloads:
- 10
- Uploads:
- 4
- Thanks:
- 21
- Thanked:
- 5 times in 1 posts
March 9, 2015 at 3:32 pm #562255Hi Ninja!
I did all the steps you tell me, but I think something is not Ok. I need to clear any special cache or similar?
Thanks!Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 10, 2015 at 6:12 am #562349<em>@emilion 462370 wrote:</em><blockquote>Hi Ninja!
I did all the steps you tell me, but I think something is not Ok. I need to clear any special cache or similar?
Thanks!</blockquote>I will fix this problem directly on your site, you can pm me admin login and FTP account of your site. I will help you out.
March 10, 2015 at 10:55 am #562402Yes, even at my side, I could not change the “Recent Project” text. Having issue, despite followed all the above steps. My development site is serantau.org/austqual.com
emilion Friendemilion
- Join date:
- August 2006
- Posts:
- 71
- Downloads:
- 10
- Uploads:
- 4
- Thanks:
- 21
- Thanked:
- 5 times in 1 posts
March 10, 2015 at 11:00 am #562403Sent!
Thanks!
Emilio.Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
March 11, 2015 at 10:09 am #562586<em>@emilion 462553 wrote:</em><blockquote>Sent!
Thanks!
Emilio.</blockquote>I fixed the problem directly on your site with the solution below, you can check it again, let me know if it helps
AuthorPostsViewing 14 posts - 1 through 14 (of 14 total)This topic contains 14 replies, has 4 voices, and was last updated by Ninja Lead 9 years, 8 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Recent Project text
Viewing 14 posts - 1 through 14 (of 14 total)