SOLUTION: HTML5 Alignment Iframe vs. deprecated "Scrolling=No" "Marginheight" and "Marginwidth" syntax

0
Finally... (after several days of study) I have discovered how to embed iframes into an html5 document and to avoid the validation errors, the scroll bar which inevitably presents itself, the issue with the deprecated "scrolling=no" and "marginwidth="0" and "marginheight=0" syntax. Part One: Turning off the Scrolling Bar First, I read a page on the web, (this page) which explained to prevent scrolling.. EDIT the file or (plural) FILE(S) which are embedded and load inside the frame, to turn off scrolling. It is futile to edit the main page itself. You do this: That syntax...
Read More »

Collapsing Div Menu

0
1. I'm saving the div as an html file and using a frame to insert the div element into the sidebar of a blog, like this: <div style="background: #091708; font-size: 11; color: #cccccc; border: 1px #0E2B0E solid; overflow:auto; overflow-x:hidden"><center><iframe border="0" align="middle" frameborder="1" marginheight="0" marginwidth="0" height="920" src="http://example.com/frames/publication-list.html" style="border:none;" scrolling="no" width="240" allowtransparency="true"></iframe></center></div> I have used a <div> to provide...
Read More »

Blogger Posts with Preview

0
From an article "How to create Magazine Style with Post Summaries and Thumbnails on Blogger". Very good article. The code I use is as follows. 1. Perform a search for the following line in the blogger template. The second search hit is the one you will search for:   <data:post.body/>   Original <data:post.body/> Modified <data:post.body/> 2. Over-write <data:post.body/> with the following code: <b:if cond='data:blog.pageType != "item"'> <b:if cond='data:blog.pageType != "static_page"'> <span...
Read More »