Tagged Questions

Blueprint is a CSS framework, which aims to cut down on your development time. It gives you a solid foundation to build your project on top of, with an easy-to-use grid, sensible typography, useful plugins, and even a stylesheet for printing.

learn more… | top users | synonyms

54
votes
16answers
18k views

Help me choose a CSS framework: 960 vs Blueprint vs?

I've been looking at different CSS frameworks. The two major players seem to be 960.gs and Blueprint. My question is simple: what are the pros and cons to each, and which do you recommend? And are ...
20
votes
4answers
4k views

What is the value of Compass for Rails 3.1?

I'm trying to decide if I should include Compass when starting a new Rails 3.1 project. I haven't used Compass before. Rails 3.1 now supports SCSS directly. The Rails 3.1 asset pipeline (via ...
17
votes
7answers
7k views

How does one load a CSS framework in Rails 3.1?

I am trying to load a CSS framework, Blueprint, onto my Rails 3.1 application. In Rails 3.0+, I would have something like this in my views/layouts/application.html.erb: <%= stylesheet_link_tag ...
14
votes
1answer
1k views

CDN for blueprint css framework

Does anyone know a free CDN for blueprint css framework thanks in advance cheers, sameera
7
votes
5answers
3k views

What's css style “p + p”?

Using firebug, I found that blueprint css framework is applying this style to my <p> tags: p + p { margin-top:-1.5em; text-indent:2em; } I don't know what the + means. What's the difference ...
6
votes
2answers
1k views

What’s the difference between 960.gs/Blueprint and LESS?

Ultimately, I like to code my own CSS. I hate it when I have to conform to someone else's naming conventions... especially when they have no real meaning. However, I am attracted to the fact that a ...
5
votes
3answers
2k views

Is 960 more conducive to good design than Blueprint?

Comparing sites designed in 960 with sites designed using Blueprint, it seems to me the 960 sites are a lot sharper. I don't know if this is a coincidence of the samples I'm looking at. Or is there ...
4
votes
4answers
2k views

Blueprint CSS, Ruby on Rails 3.1 and “CSS conditions”

I'm migrating my application to Rails 3.1 and I use the blueprint css framework. As seen in the setup instructions at blueprint's github page there's is a condition that needs to be true for the ...
4
votes
4answers
2k views

How to create a table WITHOUT alternating row colors when using Blueprint CSS framework?

The Blueprint CSS framework makes all table rows of alternating colors by default. How to disable this behaviour for one table? I tried to use Chrome Developer Tools to see all the styles Chrome uses ...
3
votes
1answer
213 views

Blueprint framework

I'm currently restyling my web application, my friend suggested me to use a framework as blueprint, can someone please tell me if it's a good choice or if it has some cons ? Thanks
3
votes
1answer
151 views

How to use a CSS Framework with Yesod?

I want to use the Blueprint CSS Framework with Yesod. Are there any best practices? Because Yesod uses templates for CSS, it looks to me that I cannot use the .css-files directly? Do I have to rename ...
3
votes
2answers
567 views

What's the point of gutters in CSS grid frameworks?

I'm diving into web development and I'm playing with the Blueprint CSS framework, which includes a grid system, and I have a few questions. What's the point of gutters? Surely they're not used to ...
3
votes
2answers
1k views

how to apply conditional stylesheet $this->headLink()->appendStylesheet('css/css.css') with zend-framework

can anyone help me with what to do for css for IE (for blueprint css) I have done <?php $headlink = $this->headLink(); ...
3
votes
2answers
257 views

facebook style layout question

I am trying to emulate this simple layout : _______________________________________ |____header___________________________| | | | | ...
3
votes
4answers
557 views

Blueprint: Push column partially in to another column

Is it possible using Blueprint's push-x and pull-x classes to create an overlapping column that is half in one column and half in another column? Here's an example: +-------+-----+-------+ | | ...
3
votes
3answers
2k views

How can you configure Rails to use blueprint-css instead of the default scaffolding css?

What changes do you need to make to a Rails project to configure blueprintcss as the default stylesheet to be used when you generate scaffolding instead of scaffold.css?
2
votes
1answer
40 views

CSS3 framework overload-comparisons of each?

I’m a newcomer to CSS3 and at the moment I’m overwhelmed by the plethora of options when it comes to frameworks. Can anyone point me to an objective comparison of each, and when it makes sense to use ...
2
votes
1answer
254 views

Blueprint via Compass in Rails 3.1

I have successfully integrated Compass and Rails 3.1 in this sample app. I am also trying to learn to use Blueprint, so I am trying to replicate the Grid Test in the app. So how do I include ...
2
votes
1answer
181 views

Rails 3.1 and Stylesheet Frameworks

I am building an application in Rails 3.1 and I really like the whole SASS feature. I looked at Compass recently and did also come across some debate discussing the need to use compass anymore in ...
2
votes
1answer
341 views

how to center a box using blueprint css framework

My _base.scss contains the following $blueprint-grid-columns: 12; $blueprint-container-size: 750px; $blueprint-grid-margin: 0px; // Use this to calculate the width based on the total width. // Or you ...
2
votes
1answer
524 views

Implementing a dropdown menu in Compass & jQuery

I'm styling a website using Compass and jQuery. What is the best way for styling a list of lists as a horizontal menu with dropdown? A good example of such a menu can be seen here.
2
votes
1answer
155 views

What special features does Compass have?

What features does Compass have that the standard Sass portion of the HAML gem does not?
2
votes
1answer
151 views

Why does blueprint css define a div.class and class with the same styling?

In the linked code for the blueprint CSS framework, there is a style defined for a div.class selector and just the .class selector. Isn't this redundant? Or is there a more subtle reason for ...
2
votes
1answer
292 views

Hyperlinks showing URL with Blueprint

I just converted a site to Blueprint CSS today, and suddenly all my hyperlinks are showing their URL's in brackets, e.g. This hyperlink <a href="Products/List.aspx">Read more</a> ...
2
votes
5answers
827 views

What’s the best grid framework to use with LESS css?

I'd like to use a grid framework (e.g. blueprint/960.gs/...) with LESS(.js) but it looks there's some issues when you decide to go that way: For example with blueprint: The ie hacks stylesheet ...
2
votes
1answer
76 views

Why do my login status links not render properly with BlueprintCSS's print.css

I am attempting to implement the BlueprintCSS grid framework in my app and after including the scripts it calls for my links are rendering weird. I have it narrowed down to the print.css. was ...
2
votes
2answers
465 views

Using blueprint CSS, is it possible to do the following layout

I would like to do the following layout using blueprint css Page Width = 960px <- 20px -> <------- 600px -------> <- 20px -> <--- 300px ---> <- 20px -> left ...
2
votes
1answer
738 views

CSS - css framework (like blueprint) for a 100% page width design?

I've used blueprint in the past for designing websites and it helped a lot. I'm now considering developing a new site, but this time it will be a 100% width site (think google groups page). Blueprint ...
2
votes
3answers
1k views

How can I override blueprint's styles?

Hi I'm using blueprint and for some reason I can't override some of their built-in styling (screen.css). So far I've tried: #asset-index-desc .container div li :border ...
2
votes
1answer
1k views

How to display a 100% width stripe in a CSS design using a fixed-grid blueprint?

Not sure that the title is really describing what I am trying to do. Actually, this is quite simple and widespread usage over the internet : I want in the background some liquid/full width of ...
2
votes
2answers
531 views

Anyone used CSS blueprint with Sharepoint sites

Anyone used the blueprint (http://www.blueprintcss.org/) with Office Sharepoint server publishing sites? If yes, what do you think? Any catches or problems ? does it really save time and make it easy ...
2
votes
2answers
2k views

using blueprint css within a jquery ui tab

I'm using blueprint to do a complex form layout that involves jquery-ui tabs, but when I try to use the blueprint span-x divs within the jquery-ui tabs, the formatting gets all screwy.... <div ...
2
votes
5answers
2k views

altering jquery datepicker to work with blueprint css

Does anyone have any pointers how to to fix the styling issue presented when using jquery ui's datepicker along side blueprint css framework? Specifically the table with the dates appears larger ...
1
vote
1answer
131 views

Rails 3.1, Blueprint CSS and Heroku

I've searched through this group and the rest of the Web and found bits and pieces of a solution to my problem, but haven't found anything that really works. Here is my issue. I'm running Rails ...
1
vote
1answer
119 views

ruby on rails 3.1 web design

May I ask you how to make rails web design more efficient? Is compass plus blueprint the perfect match? Is the current version of compass support rails3.1 Are there any other frameworks that will ...
1
vote
1answer
97 views

blueprint container inside other container, set height: 100%

Good Morning, I'm working with blueprint css framework. My problem is that I can't set height: 100% of a container that is inside in an external container. (container is intended as container ...
1
vote
1answer
24 views

Blueprint CSS - pages not inheriting from application layout page

I have the following in my application layout page <body> <div class="container showgrid"> <%= render 'layouts/header' %> <section> <%= yield %> ...
1
vote
1answer
66 views

Linking to Blueprint CSS tabs?

I'm using Blueprint CSS as the framework for a website I'm currently building, I'm also using the tabs plugin (http://blueprintcss.org/demos/tabs.html) which works really nicely, however I'd like to ...
1
vote
1answer
97 views

100% width background only filling to the right

UPDATE: The reason it wasn't working is because the element with width: 100% was inside a div class="container" element. Removing that fixed the problem! (don't have enough rep to answer the question ...
1
vote
1answer
253 views

Blueprint CSS - High level rules for using it

I started using Blueprint CSS at about 8AM EDT this morning and I find myself having the following questions: When do I use the container class? How should I think of container conceptually? Do ...
1
vote
1answer
1k views

How do I organize imports in Compass/Blueprint?

I have researched SASS and Blueprint seperately, and think I understand how they work, and I have set up my project directory using the compass CLI tool, but I am at a loss as to the correct way to ...
1
vote
1answer
350 views

Border width is causing div to go out of the container

I'm trying to learn about Blueprint CSS framework, so, this question might be silly. In one of my pages, I need to use a box with borders. However, when I set the border size more than 0, it goes out ...
1
vote
1answer
334 views

Negative-margin border on an element that is centered with margin: 0 auto;

I have a fixed-width page that I want to add a simple border to with the Border CSS command. However, I don't want this border to balloon the page and cause smaller screens to have a horizontal ...
1
vote
1answer
149 views

How does a framework like Blueprint CSS keep your site looking consistent from one screen resolution to another?

I've been told to look into using a framework like Blueprint or 960 for my CSS. What I don't understand is how it makes a site look consisent even if two users have different screen resolutions. How ...
1
vote
3answers
269 views

Using Blueprint CSS, how do I get text to wrap around an image div?

I created the following wrapper div with a div inside it half the width to contain an image. What I want is the text placed in the wrapper div to flow around the image div but it's either appearing ...
1
vote
1answer
73 views

Dealing with image sizing in Blueprint

I'm very new to Blueprint, as in started this morning, but one thing that struck me is the 'problem' of fixed width content like an image. What do I do if the image is wider than the columns it ...
1
vote
2answers
91 views

Is there a Blueprint Plugin for reverse (white on black) typography?

I'm using the Blueprint CSS framework for a website. Some pages I'm developing have a black background. Although I can set all the styles myself, I'm wondering if anyone knows of a plugin I could ...
1
vote
1answer
131 views

The .sass file has “+column(!main_content_width)” — what does it mean?

Is it actually part of BluePrint? What do they do? +column(!main_content_width) +clearfix Where can some intro docs be found for it? thanks.
1
vote
1answer
636 views

How to remove space between columns in BluePrint CSS framework?

I am using blueprint css framework when using the following code: <div class="container showgrid"> <div class="span-12">left column</div> <div class="span-12 ...
1
vote
1answer
87 views

Blueprint HTML Columns Question

So looking into Blueprint, the default width is 950px and using 24 columns. My question is why change the columns to either lower or higher? We are still in the end getting 950px total. Do people do ...

1 2 3