Hello.
I don't understand how can I modify the default templates header size for more higher that I could use my own logo.
What file should I modify?
Also one more question.
What file should I modify to replace the texts: You are here: ; Next page ; Top
Header modifying
Re: Header modifying
Which Ver. of CMSMS?
The header size is in the Layout CSS.
The words are in the template, You are here is in the Breadcrumb... {breadcrumbs starttext='You are here'
The Next and Top Previous are in the self_link...
{anchor anchor='main' text='^ Top'}
{cms_selflink dir="previous" label="Previous page: "}
{cms_selflink dir="next"}
The header size is in the Layout CSS.
The words are in the template, You are here is in the Breadcrumb... {breadcrumbs starttext='You are here'
The Next and Top Previous are in the self_link...
{anchor anchor='main' text='^ Top'}
{cms_selflink dir="previous" label="Previous page: "}
{cms_selflink dir="next"}
Re: Header modifying
I have the version 0.13.mark wrote: Which Ver. of CMSMS?
The header size is in the Layout CSS.
The words are in the template, You are here is in the Breadcrumb... {breadcrumbs starttext='You are here'
The Next and Top Previous are in the self_link...
{anchor anchor='main' text='^ Top'}
{cms_selflink dir="previous" label="Previous page: "}
{cms_selflink dir="next"}
I still can't find the layout css file.
Also I don't have an idea about that breadcrumbs..
It would be nice if you could give me "dummy instructions" how to modify those files.
Maybe I am stupid, but I am just learning to understand this.
Re: Header modifying
In CMSMS templates and stylesheets are kept in the database, not in files.petri wrote: I still can't find the layout css file.
You can access/edit them through the admin panel (Layout in the menu).
In the templates the breadcrumbs tag is called like this:petri wrote: Also I don't have an idea about that breadcrumbs..
It would be nice if you could give me "dummy instructions" how to modify those files.
Code: Select all
<!-- Start Breadcrumbs -->
<div class="breadcrumbs">
{breadcrumbs starttext='You are here' root='Home' delimiter='»'}
<hr />
</div>
<!-- End Breadcrumbs -->
The relational links are called in the templates like this:
Code: Select all
<!-- Start relational links -->
{cms_selflink anchorlink='main' dir='anchor' text='^ Top'} ...
{cms_selflink dir="previous"} ...
{cms_selflink dir="next"} ...
<!-- End relational links -->
Code: Select all
{cms_selflink dir="previous" label='The text you want'}
Last edited by Anonymous on Tue Sep 12, 2006 9:29 am, edited 1 time in total.