i'm not using the menu CMSMS can build for a certain website. Instead i'm using buttons like this:
Code: Select all
<a href="home"><img src="home.jpg" border="0"></a>
Code: Select all
<a href="home"><img src="home.jpg" border="0"></a>
Use orange palm (internal link) in Tiny editorRobMan wrote: how can i make CMSMS link this to another page (same template)?
Code: Select all
<a href="home"><img src="home.jpg" border="0"></a>
Code: Select all
{cms_selflink page"home"}<img src="home.jpg" border="0">
Code: Select all
<a class="home" href="{cms_selflink href='pagealias'}"></a>
Code: Select all
.home {
background-color: #xxxxxx; [whatever your bg color is or "transparent"]
background-image: url(/path/to/home.jpg);
background-repeat: no-repeat;
background-position: center center;
height: ??px;
width: ??px;
}