Hi,
I have attached a screenshot to show the problem I'm having. I'm using the Left sidebar + 1 column template and stylesheet.
Two things I'm trying to figure out but not sure how to do this in cmsms.
1. Make the article scollable
2. Remove the links in the footer
Sorry these are very basic questions but thanks for any guidance.
Regards,
Ed
two newbie questions
Re: two newbie questions
I managed to remove the menu in the footer by taking {menu loadprops=0} out from the template.
Re: two newbie questions
#2 Remove the {menu} calls in the footer of your template.
Re: two newbie questions
To make a content block scroll you need to use CSS...
http://www.w3schools.com/cssref/pr_pos_overflow.asp
http://www.w3schools.com/cssref/pr_pos_overflow.asp
Re: two newbie questions
Thanks for that.
I added overflow-y:auto and height:500px to my stylesheet and that did the job.
I added overflow-y:auto and height:500px to my stylesheet and that did the job.
Code: Select all
div#main {
/* this is the last inside div so we set the space inside it to keep all content away from the edges of images/box */
padding: 10px 15px;
/* you can set your own image here */
background: url([[root_url]]/uploads/ngrey/rtup.gif) no-repeat right bottom;
overflow-y:auto;
height:500px;
}