Failing to style print.css properly

I have a simple print.css file here for this page, but I cannot get the list items to flow underneath the heading they wrap up - is there something simple I’m missing?

http://www.newyoubootcamp.com/dev2/recipes/banana-smoothie.php


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hi Nathan,
You’ve inline styles on the page (#ingredient-title and #ingredient-title) that are getting used even through there are others in the print stylesheet. Basically the inline styles are winning in the battle between the two conflicting styles.

Open up the print style sheet and search for;


#ingredient-title {
    display: block;
    width: 100%;
}

and replace it with;


#ingredient-title {
    display: block;
    width: 100% !important;
    float:none !important;
}

#preparation-title {
	width: 100% !important;
}

which should make the titles full width and force the ingredients list and preparation text below them.

Softpress, can Freeway 7 please have a preview mode where we can edit a print style sheet by selectively hiding elements on the page we don’t want to print? I think that would be worth having.
Regards,
Tim.

On 3 Oct 2013, at 15:16, BigG wrote:

I have a simple print.css file here for this page, but I cannot get the list items to flow underneath the heading they wrap up - is there something simple I’m missing?

http://www.newyoubootcamp.com/dev2/recipes/banana-smoothie.php


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hey Nathan,

I think the floats on “ingredient-title” and “preparation-title” are
unnecessary. Removing this makes the print view look good for me.


Ernie Simpson

On Thu, Oct 3, 2013 at 10:16 AM, BigG email@hidden wrote:

I have a simple print.css file here for this page, but I cannot get the
list items to flow underneath the heading they wrap up - is there something
simple I’m missing?

http://www.newyoubootcamp.com/dev2/recipes/banana-smoothie.php


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

legend! Nice one Ernie thanks very much… i do tend to get snow blind sometimes when looking at too much code.

Appreciated.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options