Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2006-05-08 01:40:26
- girlvsworld
- New Member
- Registered: 2006-03-25
- Posts: 2
columns
Hi, sorry to ask this same question but all the other posts about this haven’t solved my problem..I’d like to divide a page into 3 columns and have the content be managed through textpattern. I’ve essentially used this:
< div id=“contentleft” >< txp:article_custom catergory=“ads” limit=“1” / >
< /div >
< div id=“contentcenter” >
< txp:article_custom catergory=“main” / >
< /div >
< div id=“contentright” >
< txp:article_custom catergory=“right” limit=“1” / >
< /div >
but all I get is the content in all 3 sections.
You can observe my messed up results here:
<a href=“http://caeaa.com/test/ “>http://caeaa.com/test/ </a>
thanks for your help.
Offline
#2 2006-05-08 05:11:06
- whatbrick
- Member
- From: Texas
- Registered: 2006-03-13
- Posts: 100
Re: columns
This may seem like a “Duh!” moment, but is category misspelled in your article_custom tags like it is in your post?
<div id="contentleft">
<txp:article_custom category="ads" limit="1" />
</div>
<div id="contentcenter">
<txp:article_custom category="main" />
</div>
<div id="contentright">
<txp:article_custom category="right" limit="1" />
</div>
Other than that, I see no reason it would not work.
Do not taunt the Markup Monkey!
Offline