Tag

Your search for css returned 4 results.


Print CSS for Rails and a print link helper

A while back How About We for Couples launched gift memberships and we needed a way to allow the buyer to print something for the person they were giving it to. "No problem," I thought - we'll use a print stylesheet! Turns out there was a bit more to it than that. (more…)

Read More


5 tips for keeping your Rails views under control

Use & enforce design and code styleguides for SASS & views Markup is about content not design Use SASS variables mixins Move CSS classes up in the DOM & design changes to CSS Use decorators (or helpers) to: Generate classes Generate copy Generate HTML attributes View my RailsConf talk on Incremental Design. #mc_embed_signup{background:#fff; ...

Read More


The Path to Becoming a Developer :: Skillcrush Masterclass

Recently, I had the honor of doing a Skillcrush Masterclass on the Path to Becoming a Developer. I talked about how I became a developer, mining your own experience, and presented on the 4 things you can do now to become a professional developer: (more…)

Read More


Forcing ASP .Net Validators and ValidationSummary to use CssClass

Here's something strange. If I create a validator using the following mark up: <asp:requiredfieldvalidator id="rfv_txt" runat="server" errormessage="Required" CssClass="errorText" /> and my css class is: errorText { color: purple; } My validator still renders with red text. Checking the markup, I see that ASP .Net has added an inline style ...

Read More