Tech Support Forum banner
Status
Not open for further replies.
1 - 3 of 3 Posts

· Registered
Joined
·
41 Posts
Discussion Starter · #1 ·
Hey everyone, bit of a furry one here.

I have two Joomla templates, A and B. Is there a way I can insert design elements from template B (the calendar date next to the blog article title) into my working template A?
To see what I'm on about, template A is: Blog
Template B is: Blog

Is this possible, and how would I go about this? Thank you for any help in advance.
 

· Registered
Joined
·
5,238 Posts
Re: Using elements from one Joomla template to the other

I am sure you could just don't know how complicated it would be...

HTML:
<div class="gkDate"><div>04	Aug</div></div>
Is the current output which means you would need to adjust that into php to change with the post...

and the css:
Code:
.gkDate {
		background-image: url('../images/style1/date.png');
}
.gkDate > div {
		background: #9fb960;
}
 

· Registered
Joined
·
41 Posts
Discussion Starter · #3 ·
Re: Using elements from one Joomla template to the other

Thank you for your guidance Laxer.
With your help I managed to find what had to be updated, it looks exactly how I was hoping for.

Thank you once again.
 
1 - 3 of 3 Posts
Status
Not open for further replies.
Top