two newbie questions

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
equick
New Member
New Member
Posts: 3
Joined: Sat Mar 17, 2012 11:14 am

two newbie questions

Post 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
Attachments
screenshot
screenshot
equick
New Member
New Member
Posts: 3
Joined: Sat Mar 17, 2012 11:14 am

Re: two newbie questions

Post by equick »

I managed to remove the menu in the footer by taking {menu loadprops=0} out from the template.
Wishbone
Power Poster
Power Poster
Posts: 1368
Joined: Tue Dec 23, 2008 8:39 pm

Re: two newbie questions

Post by Wishbone »

#2 Remove the {menu} calls in the footer of your template.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: two newbie questions

Post by Dr.CSS »

To make a content block scroll you need to use CSS...

http://www.w3schools.com/cssref/pr_pos_overflow.asp
equick
New Member
New Member
Posts: 3
Joined: Sat Mar 17, 2012 11:14 am

Re: two newbie questions

Post 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;
}
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: two newbie questions

Post by Dr.CSS »

Post Reply

Return to “Layout and Design (CSS & HTML)”