2011-12-16 18 views
0

私はサイトで作業しています。大きな画像(900px幅)でそのコンテナ全体を覆いたい現時点では、私は修正することができない権利をtowrds少し詰め物があります。私を助けてください。埋め込みを修正できません

<!DOCTYPE html> 
<html id="index-page" class="canvas canvastext no-touch draganddrop rgba borderradius boxshadow textshadow opacity fontface video audio localstorage mobile-768 mozilla wordpress-section w-900 lt-960 js gradient rgba opacity textshadow multiplebgs boxshadow borderimage borderradius no-cssreflections csstransforms csstransitions fontface not-ie domloaded" lang="en-US" dir="ltr"> 
<head> 
<body id="home" class="home blog"> 
<div id="wrap" style=""> 
<header role="banner"> 
<section id="site-logo"> 
<a href="http://ackmaster.com/wordpress"> 
<img width="1200px" alt="Ackmaster.com" src="http://ackmaster.com/wordpress/wp-content/uploads/2011/12/WebSiteMain2.jpg"> 
</a> 
</section> 
<section id="nav-wrap"> 
</header> 
<div id="content" role="main"> 
<footer style="min-height: 0; padding-top: 0;" role="contentinfo"> 
</div> 
<script> 
<div id="fancybox-tmp"></div> 
<div id="fancybox-loading"> 
<div id="fancybox-overlay"></div> 
<div id="fancybox-wrap"> 
</body> 
</html> 

放火犯を使用して関連するCSSは次のとおりです。

body, button, input, select, textarea { 
    color: #8E8E8E; 
} 
dark.css (line 7) 
body { 
    background-image: url("bg-base.jpg"); 
} 
dark.css (line 6) 
body { 
    min-width: 480px; 
} 
mobile.css (line 6) 
body { 
    background: url("../images/bg-base.jpg") repeat scroll 0 0 transparent; 
} 
layout.css (line 7) 
body, button, input, select, textarea { 
    color: #3F3F3F; 
    font-family: "Helvetica Neue",Arial,sans-serif; 
} 
boilerplate.css (line 37) 
body { 
    font-size: 13px; 
    line-height: 1.6; 
    margin: 0; 
} 
boilerplate.css (line 35) 
Inherited fromhtml#index-page.canvas 
html { 
    font-size: 100%; 
} 
boilerplate.css (line 33) 

答えて

1

スタイルシート「layout.css」は、#wrapのdivの場合はpadding: 0 30;です。これは画像が座っているdivです。パディングは画像の左右に影響します。左のパディングを維持して右を削除するには、padding-left: 30px;に設定します。

+0

これは意図的に見えますか?多分#site-logo img {width:100%}を作成する必要があるかもしれません。また、ラップは、マージンが欠けているようです:フルサイズの自動。 –

0
<body id="home" class="home blog" style="margin: 0px;"> 

あなたはCSSを使用して0PXする体のマージンを変更する必要があります。

+0

すでに0pxです。私の編集を参照してください –