GetSimple Support Forum

Full Version: Content component
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey everybody,
I have a problem, in my hompage I have a component (sidebar), in this component have a content page, but I don't want it look all page, only part of content.
How do I do it?

Sorry for my bad English.

Thanks.Shy
I am doing that with html and css. In the template:
Code:
<div class = "extract">
        <?php getPageContent('slug'); ?>
    </div>

and in the css
Code:
.extract {
    max-height: 110px;
    overflow: hidden;
}
Thanks Timbow,
I also was doing with html and css but I forgot the overflow property.

Thanks