-
AuthorPosts
-
January 10, 2011 at 5:29 pm #158557
I am having difficulties replacing the site name ( as text ) at the bottom left of the footer for an image.
Can someone please tell me how I can do that.
I disabled CSS optmisation, so I am working with the template CSS files, not the files in T3-Assets.
Any help is much appreciated!
Warm regards
Henriqueaman204 Friendaman204
- Join date:
- January 2010
- Posts:
- 1945
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 11
- Thanked:
- 418 times in 356 posts
January 10, 2011 at 7:11 pm #371169Please clarify if you wish to have your manual text placed there or an image, mainly
January 13, 2011 at 2:58 am #371570I am having a similar issue. How can I change to a logo?
January 13, 2011 at 1:13 pm #371670where is the answer ?
aman204 Friendaman204
- Join date:
- January 2010
- Posts:
- 1945
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 11
- Thanked:
- 418 times in 356 posts
January 13, 2011 at 7:35 pm #371703Hi Triley and fajertv,
<blockquote>Please clarify if you wish to have your manual text placed there or an image, mainly </blockquote>
Please let me know as to what you need so that I can add my reply 🙂
Cheers
January 14, 2011 at 4:44 pm #371870i need to replace it with an image
regards
Ismaelaman204 Friendaman204
- Join date:
- January 2010
- Posts:
- 1945
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 11
- Thanked:
- 418 times in 356 posts
January 14, 2011 at 6:16 pm #371881<em>@fajertv 215033 wrote:</em><blockquote>i need to replace it with an image
regards
Ismael</blockquote>You can change image here accordingly and then make updates::
#ja-footlogo {template.css (line 922)
background: url(“../images/curl-bg-4.png”) no-repeat scroll right top transparent;
height: 85px;
left: 12px;
position: absolute;
text-align: center;
top: -5px;
width: 220px;
}as
#ja-footlogo {template.css (line 922)
background: url(“../images/curl-bg-4.png”) no-repeat scroll right top transparent;
height: 85px;
left: 12px;
position: absolute;
text-align: center;
top: 0;
text-indent:-999em;
width: 220px;
}and then remove these properties::
#ja-footlogo a {template.css (line 932)
background: none repeat scroll 0 0 #000000; >> remove
border: 1px solid #000000; >> remove
color: #666666;
display: block;
font: 32px/85px ArialNarrowBold,”Arial Narrow”,Arial,sans-serif;
height: 85px;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.75);
text-transform: uppercase;
white-space: nowrap;
width: 214px;
}January 17, 2011 at 1:18 am #372156I will try it our and let you know my results. I may have overlooked but I did not see how to replace the logo or the absolute path. Can you explain in detail?
aman204 Friendaman204
- Join date:
- January 2010
- Posts:
- 1945
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 11
- Thanked:
- 418 times in 356 posts
January 17, 2011 at 5:31 pm #372268Hi triley0131,
To avoid confusion, Can you please provide in screenshot marked with annotations as to what you need
January 20, 2011 at 2:50 pm #372883Hi Amon204,
Basically, I am trying to replace the “site” name and Power by T3 with my own logos. Attached is a screen shot.
Thanks
aman204 Friendaman204
- Join date:
- January 2010
- Posts:
- 1945
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 11
- Thanked:
- 418 times in 356 posts
January 20, 2011 at 6:24 pm #372897Hi triley,
1) The above suggestion would work fine for you where you could update in image accordingly::
<blockquote>
<em>@fajertv 215033 wrote:</em><blockquote>i need to replace it with an imageregards
Ismael</blockquote>You can change image here accordingly and then make updates::
#ja-footlogo {template.css (line 922)
background: url(“../images/curl-bg-4.png”) no-repeat scroll right top transparent;
height: 85px;
left: 12px;
position: absolute;
text-align: center;
top: -5px;
width: 220px;
}as
#ja-footlogo {template.css (line 922)
background: url(“../images/curl-bg-4.png”) no-repeat scroll right top transparent;
height: 85px;
left: 12px;
position: absolute;
text-align: center;
top: 0;
text-indent:-999em;
width: 220px;
}and then remove these properties::
#ja-footlogo a {template.css (line 932)
background: none repeat scroll 0 0 #000000; >> remove
border: 1px solid #000000; >> remove
color: #666666;
display: block;
font: 32px/85px ArialNarrowBold,”Arial Narrow”,Arial,sans-serif;
height: 85px;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.75);
text-transform: uppercase;
white-space: nowrap;
width: 214px;
}</blockquote>
2) For T3 logo, You can update in image here accordingly::
.t3-logo-dark-sm a {template.css (line 898)
background-image: url(“../logo/t3_logo_dark_sm.png“);
}January 21, 2011 at 3:10 pm #373036Amon24,
I got the image location for answer (2).
But how do I replace the logo in answer (1). Your answer (2) removes the site name but does it address replacing the logo? If so, what is the absolute path.
Thanks
aman204 Friendaman204
- Join date:
- January 2010
- Posts:
- 1945
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 11
- Thanked:
- 418 times in 356 posts
January 21, 2011 at 5:08 pm #373048Hi Triley,
In footlogo part i.e. for which I have given suggestion in point (1) is text showing site name which you can replace with image through the suggestion above
Not really sure as to what you need. Can you please be more specific
Cheers
March 5, 2011 at 6:44 pm #379858Hey Aman,
Great suggestion and work around. However, when I do the above, and roll over the image, as I am using JA Teline IV, and bottom footlogo has a roll over ‘hover’ effect, how do I show a different transparent image in front of the ‘hover’ effect?
March 5, 2011 at 6:46 pm #379860I know I have to modify this:
#ja-footlogo a:hover,
#ja-footlogo a:active,
#ja-footlogo a:focus { background: #069; color: #fff; text-decoration: none; }AuthorPostsThis topic contains 21 replies, has 8 voices, and was last updated by ilgar rzazade 13 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum