誰かのブログを (許可を得て) 自分のブログに埋め込もうとしています。私はこれを iframe で行っており、彼のブログの一部だけをトリミングしたいと考えています。彼のブログを埋め込みたい静的ページの要素の一部を削除する (より多くのスペースを作るために) コードを見つけました。 .
現在の私の唯一の問題は、ブログのメイン ラッパーにトリミングしているビットを表示して、より統合的に見えるようにすることです。私のブログのテストページを見ると、私が何を意味するかがわかります....
damianp1.blogspot.co.uk
メイン ラッパー (そう呼ばれている場合) は、iframe の上に浮かんでいます。
上記を行うために使用したhtmlは次のとおりです...
<style type="text/css">
.blog-pager, .footer, .comments, .post-footer, .main-background, .feed-links, .post- title, .sidebar, #Attribution1, #footer-wrapper .sidewrapper { display:none !important;}
#main-wrapper {width: 95%; float:none; margin: 0 auto !important;}
</style>
</b:if>
<style>]
#outerdiv {width: 250px; overflow:hidden; position: relative;}
#innerdiv {position: absolute; left: -360px; top: -100px;clip:rect(250px 1700px 20000px 329px);}
</style>
<div id="outerdiv">
<div id="innerdiv">
<iframe width="1000" height="30000" src="http://birdingsthelens.blogspot.co.uk/" id=’innerdiv’ scrolling="no" frameborder="0"></iframe>
</div>
</div>
トリミングされたブログの一部をメインのラッパーに入れるにはどうすればよいですか、またはこれを行うためのより良い方法はありますか? おそらくおわかりのように、私は HTML について何も知らないので、Web から見つけたコードの一部をコピーして貼り付けているだけです。
乾杯、 ダミアン