Page 1 of 1

two newbie questions

Posted: Sat Mar 17, 2012 11:50 am
by equick
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

Re: two newbie questions

Posted: Sat Mar 17, 2012 4:49 pm
by equick
I managed to remove the menu in the footer by taking {menu loadprops=0} out from the template.

Re: two newbie questions

Posted: Sat Mar 17, 2012 6:30 pm
by Wishbone
#2 Remove the {menu} calls in the footer of your template.

Re: two newbie questions

Posted: Sat Mar 17, 2012 7:22 pm
by Dr.CSS
To make a content block scroll you need to use CSS...

http://www.w3schools.com/cssref/pr_pos_overflow.asp

Re: two newbie questions

Posted: Sat Mar 17, 2012 9:55 pm
by equick
Thanks for that.

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;
}

Re: two newbie questions

Posted: Sun Mar 18, 2012 5:35 pm
by Dr.CSS