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

Java Java Objects (Retired) Harnessing the Power of Objects Methods and Constants

Howard Bonds
Howard Bonds
2,459 Points

IS there way to minimize challenge task pane...when there is a lot on screen it blocks the work areas somewhat.

cannot easily view the work area during challenge tasks it scrolls at very bottom of screen. when task paragraph to long.

GoKart.java
public class GoKart {
  private String mColor;

  public GoKart(String color) {
    mColor = color;
  }

  public String getColor() {
    return mColor;
  } 
}

1 Answer

Craig Dennis
STAFF
Craig Dennis
Treehouse Teacher

If you are using chrome you can Right click the text and choose inspect element. You can edit that text and store it someplace for reference and then remove it.

I will write a JavaScript snippet when I am on a computer....couldn't quite do it on my phone.

Hope that helps, and sorry for the lengthy instructions.