Well you need to style it so it looks like a box and it would be right at the top as after the main menu that section is the first block before any main content.
You can use below code to add that position as your module position. Rename Newmodposition twice.
- Code: Select all
<?php if($this->API->modules('Newmodposition')) : ?>
<div id="gKNewmodposition">
<jdoc:include type="modules" name="Newmodposition" style="<?php echo $this->module_styles['none']; ?>" />
</div>
<?php endif; ?>
Now create new custom html module and add below content and manually type in module position Newmodposition or if you have renamed the position enter that module position. In module access choose your user group such as registered or your custom user group.
- Code: Select all
<a id="mynewbutton" class="button" href="your link goes here">Members Only</a>
Now link should get its css from button class but you can further customize the look or position by using following css.
Example
- Code: Select all
#mynewbutton { float: right; color: #ffffff, background: #000000 }
If you post your site it would be easier.
See you around...