Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

help

Finally, make them 3 equal-sized columns that display horizontally in the large grid. The columns should evenly span the 12 available columns in a row.

my code:

<div class="3 columns">

http://teamtreehouse.com/library/framework-basics/prototyping-with-foundation/build-with-grids

Hey Lyric, the link you posted only shows the challenge in it's original state before you added your code. Could you paste your code into the text area in this form?

Checkout the Markdown Cheatsheet below it so see how you can format it.

1 Answer

Hi Lyric, to get 3 equal-sized columns that evenly span the 12 available columns in a row, you divide the max width of 12 columns by 3, which gives us 4. Also, be sure to check out the documentation for the grid.

<div class="large-4 columns">

P.S. I fixed code highlighting for you.

i got the answer already but thank u but can u help me with this: http://teamtreehouse.com/library/adding-icons-to-tabs

This music app has three tabs. In MainActivity below, set the text for each tab using the method setText(). As the parameter, use the value returned by the PagerAdapter's getPageTitle() method.

my code:

.setText(PagerAdapter.getPageTitle(i));

See if this thread helps.