Lee Farmer
posted this on May 17, 2011 15:26
Hi, I'd like to see if its possible to add a few content areas to the homepage. Basically it would just be three DIV's right below the slideshow. (see attachment). Since I'm not familiar with liquid I'm wondering if I can just insert three div's with their style linked to the main stylesheet. Something like:
<div id="left">content</div>
<div id="center">content</div>
<div id="right">content</div>
If that is possible, can you tell me on which line of index.liquid to add the div's?
Thanks for your help.
Comments
Hi Lee,
That would be no problem. I'd simply put the additional divs under the banner div (at line 22). You probably want to wrap them in a surrounding div:
<div id="callouts" class="clearfix">
<div id="left">content</div>
<div id="center">content</div>
<div id="right">content</div>
</div>
Gavin.
Perfect!...thanks for your help.
Hi Im trying to do the same thing but I dont know NOTHING about Liquid..can u help me..please
Hi Im trying to do the same thing but I dont know NOTHING about Liquid..can u help me..please
Hi Luis,
I can't help you with the liquid code but I can tell you that you can just insert regular HTML and CSS into the page and it will work fine.