Elxis CMS Forum

Extensions => Templates => Topic started by: Never on August 16, 2008, 20:58:14

Title: Template help
Post by: Never on August 16, 2008, 20:58:14
Hello there.

I'm using the default Elxis template i.e "Okto" and I would like to place header and navigation into my forum's header, so that my forum looks like a part of the site. Can somebody tell me which part of the template code I need? Thanks.
Title: Re: Template help
Post by: CREATIVE Options on August 16, 2008, 21:33:43
Hello Never and welcome to our forum,
Are you using the wrap function to insert your forum inside your website ?
Title: Re: Template help
Post by: Never on August 16, 2008, 22:28:09
Hello.

No, I'm not using wrap function, I'm editing the forum's template to match the Elxis one. Basically, I need to insert part of the Elxis "Okto" template (header and navigation) code into the forum's header so it looks like a part of the site. Just a template edit. Thanks in advance.
Title: Re: Template help
Post by: Never on August 18, 2008, 21:28:25
Can somebody help?
Title: Re: Template help
Post by: CREATIVE Options on August 18, 2008, 21:35:55
The SMF theme has different structure of the Elxis Templates.

You can post an ad in our forum.
Title: Re: Template help
Post by: Never on August 18, 2008, 22:16:33
Thanks but I don't use SMF. I would just need to known which part of the code I need that contains information about header and navigation so that I can copy that code to my forums header template (and edit it, of course).

So basically I just need someone to tell me which part of the Okto template code I need.
Title: Re: Template help
Post by: CREATIVE Options on August 18, 2008, 23:13:54
Header div:
Code: [Select]
<div id="oktoheader">
<div id="headright">
<!-- module Search loaded without template position -->
<?php elxLoadModule(&#39;mod_search&#39;, -2); ?>
<!-- module Language loaded without template position -->
<?php elxLoadModule(&#39;mod_language&#39;, -2); ?>
</div>
</div>
CSS:
Code: [Select]
#oktoheader {
text-align:left;
background: #78A1BB url(../images/elxislogo.jpg) no-repeat top left;
height: 75px;
border-bottom: 1px solid #1D4D6C;
}

/* div for language module positioned top right */
#headright {
float: right;
margin-right: 10px;
}

I thing so this is that you ask...
You can use the add-on web developer for the Firefox and you can do your job easy!
Title: Re: Template help
Post by: Never on August 20, 2008, 21:01:54
Thanks Sirigos, I'll work something out.