-
AuthorPosts
-
December 23, 2011 at 11:54 am #172085
what is the name of the T3 Framework logo file and in which folder is it located?
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
December 23, 2011 at 4:35 pm #431006<em>@mangekyou 290889 wrote:</em><blockquote>what is the name of the T3 Framework logo file and in which folder is it located?</blockquote>
The image is called t3_logo_light.png.You can remove it simply by going into your Template Manager–Profiles …
and within the “Global Settings” area, select “No Show” for the “Footer T3 Logo” property.December 23, 2011 at 10:03 pm #431037<em>@TomC 290918 wrote:</em><blockquote>The image is called t3_logo_light.png.
You can remove it simply by going into your Template Manager–Profiles …
and within the “Global Settings” area, select “No Show” for the “Footer T3 Logo” property.</blockquote>thank you, but which root folder is it in?
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
December 23, 2011 at 10:31 pm #431038<em>@mangekyou 290964 wrote:</em><blockquote>thank you, but which root folder is it in?</blockquote>
If you can provide me the url of the site you’re working on (before you remove the T3 logo image), I can tell you.
Also, for this purpose, please set “Optimize CSS” to “No” within your Template Manager–General Settings1 user says Thank You to TomC for this useful post
December 28, 2011 at 6:35 pm #431627<em>@TomC 290966 wrote:</em><blockquote>If you can provide me the url of the site you’re working on (before you remove the T3 logo image), I can tell you.
Also, for this purpose, please set “Optimize CSS” to “No” within your Template Manager–General Settings</blockquote>Thanks
PM sent with log in details
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
December 28, 2011 at 7:21 pm #431637The call for the T3 loco can be found within ja_methys/blocks/footer.php
<?php
$t3_logo = $this->getParam ('setting_t3logo', 't3-logo-light', 't3-logo-dark');
if ($t3_logo != 'none') : ?>
<div id="ja-poweredby" class="<?php echo $t3_logo ?>">
<a href="http://t3.joomlart.com" title="Powered By T3 Framework" target="_blank"><span>Powered By T3 Framework</span></a>
</div>
The image itself is actually not being pulled from any file within the template structure itself, but rather via the T3 plugin . . .
ttp://static.joomlart.com/t3/logo/t3_logo_light.pngHope that helps . . . . though, I’m not completely certain what you would want the image for – as I would assume you would want to replace or disable it altogether anyway – no?
Anyway – there ya go.
😎
December 28, 2011 at 10:22 pm #431671<em>@TomC 291748 wrote:</em><blockquote>The call for the T3 loco can be found within ja_methys/blocks/footer.php
<?php
$t3_logo = $this->getParam ('setting_t3logo', 't3-logo-light', 't3-logo-dark');
if ($t3_logo != 'none') : ?>
<div id="ja-poweredby" class="<?php echo $t3_logo ?>">
<a href="http://t3.joomlart.com" title="Powered By T3 Framework" target="_blank"><span>Powered By T3 Framework</span></a>
</div>
The image itself is actually not being pulled from any file within the template structure itself, but rather via the T3 plugin . . .
ttp://static.joomlart.com/t3/logo/t3_logo_light.pngHope that helps . . . . though, I’m not completely certain what you would want the image for – as I would assume you would want to replace or disable it altogether anyway – no?
Anyway – there ya go.
:cool:</blockquote>
Thanks for the help Tom, I actually just want to replace the image… is there a method of replacing it or does it need to be removed completely?
December 28, 2011 at 10:49 pm #431674i can see the logo image in this folder plugins/system/jat3/base-themes/default/images
but having problems replacing it via FTP
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
December 28, 2011 at 11:34 pm #431681<em>@mangekyou 291792 wrote:</em><blockquote>i can see the logo image in this folder plugins/system/jat3/base-themes/default/images
but having problems replacing it via FTP</blockquote>
What is the image name within that path?What problems are you experiencing trying to replace it?
December 28, 2011 at 11:53 pm #431685<em>@TomC 291799 wrote:</em><blockquote>What is the image name within that path?
What problems are you experiencing trying to replace it?</blockquote>
the image in that path is “t3_logo_light.png”
when i try to replace it with my own image (same size dimensions) when i rename it, or even delete the original file and replace with my own it still reverts back to the original T3 Framework logo
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
December 29, 2011 at 9:20 am #431736Are you also modifying the relative CSS within path . . . .
plugins/system/jat3/base-themes/default/css/template.css – starting at line 841
/* T3 Logo ---*/
.t3-logo, .t3-logo-sm { display: block; }
.t3-logo, .t3-logo a { width: 200px; height: 34px; }
.t3-logo-sm, .t3-logo-sm a { width: 77px; height: 34px; }
.t3-logo a, .t3-logo-sm a {
display: block;
text-indent: -1000em;
background-repeat: no-repeat;
background-position: center;
}
.t3-logo-light a { background-image: url(http://static.joomlart.com/t3/logo/t3_logo_light.png); }
.t3-logo-dark a { background-image: url(http://static.joomlart.com/t3/logo/t3_logo_dark.png); }
.t3-logo-light-sm a { background-image: url(http://static.joomlart.com/t3/logo/t3_logo_light_sm.png); }
.t3-logo-dark-sm a { background-image: url(http://static.joomlart.com/t3/logo/t3_logo_dark_sm.png); }You need to change the “background-image” property to point to the location of your custom image – within lines 855-859. Also, depending on the dimensions of your image, you may need to modify some of the height/width parameters within lines 844-846.
​Hope that helps.
1 user says Thank You to TomC for this useful post
-
AuthorPosts
This topic contains 11 replies, has 2 voices, and was last updated by TomC 12 years, 10 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum