Hello. . . What is the best way in Freeway Pro 7, or is there a way, to remove css styling at a break point? I have a shadow and rounded corners that are not necessary at the really small(320px) size.
That is the general idea. I don’t know if you can create these styles any way except through Page / HTML Markup and a container.
Walter
On Mar 15, 2015, at 4:23 PM, TeamSDA email@hidden wrote:
Hello. . . What is the best way in Freeway Pro 7, or is there a way, to remove css styling at a break point? I have a shadow and rounded corners that are not necessary at the really small(320px) size.
Dave, I am adding the shadow using the Freeway 7 inspector. As for the rounded corners I am adding a border-radius in the extended div, style.
Walter, tried making this style in the styles panel but not having any luck. How would I go about doing this via your Page / HTML Markup and a container method?
I have been using the opening tag and the closing tag when adding styles to the head of a page. Is this correct or should I be doing it as it was suggested above?
. I was under the understanding this was to be used as part of a link, in the head, for the purpose of pulling the styles from an external style sheet, not as an opening for styles which live in the head of the page itself?
Kind Regards, Dave
_______________________________________________
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Appreciate your input. The following link seems to verify what you are saying that if the site is HTML 5 the type attribute is no longer needed. http://www.w3schools.com/tags/att_style_type.asp
Apologies for any confusion regarding the “Link” reference. I was referring to something like the following for my example.
One further question so I set things up properly. If I am making a style adjustment at a mid breakpoint e.g. 800px, would I need to reset the property at the next breakpoint e.g. 500px, to have the style return?
I ask as it seems that all style adjustments I make at a given breakpoint seem to flow all the way down to the smallest breakpoint.
Just poped in the instead of just and it breaks in iOS.
I would be interested to see that page. I am not aware of it breaking things in iOS - unless it is malformed.
I ask as it seems that all style adjustments I make at a given breakpoint seem to flow all the way down to the smallest breakpoint.
That is exactly what CSS refers to - Cascading Style Sheets - so if you use a media query to remove an attribute from an item that is less than a certain width it will apply to all items less than that width (the cascade effect).
Thanks Dave… As for the break, I think it was me entering something wrong, all is good now.
In regards to the media query, I just wanted to be sure that is just another form of CSS and behaves as other css properties do. Building with the new Freeway Pro 7 and building a complete responsive site is new to me.
One thing to watch out for – particularly if you copy and paste from a Web page or Mail – is curly-quotes. This will break:
while this will work:
<style type="text/css"></style>
FreewayTalk on the Web (and Mac OS in general) will try to make typographically correct (smart) quotes, which absolutely do not work in HTML or any other code format. Only straight-up-and-down (dumb) quotes will work in that context.
You may be happy doing what you’re doing,m but I just wanted to jump in quickly and say that the shadow you applied using the Inspector can just be removed in the Inspector at the smaller breakpoint.
The rounded corners can be removed using the same method you used to apply them (but at the smaller breakpoint) — you just need to set the values to 0.
Cheers,
Joe
On 17 Mar 2015, at 13:39, TeamSDA email@hidden wrote:
Thank you Walt… Usually I rinse any code by placing it into text edit (Plain Text) first. Did not do that step. Sounds like this is what happened.