私は他の誰かによって構築された WordPress サイトに取り組んでおり、現在フッターのスタイルを設定しようとしていますが、いくつかの問題があります。
まず第一に、タグ内の div のいずれかを選択しても私のスタイルは許可されません。html 要素 (フッター [role=contentinfo] p {...}) を直接選択した場合にのみ機能します。むらがあります。
誰でもガイダンスを提供できますか?ここにフッターコードがあります
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
</div><!-- #main .wrapper -->
<footer id="colophon" role="contentinfo">
<div class="footer-links">
<ul>
<li>About</li>
<li>About JoeStick</li>
<li>Our Products</li>
<li>FAQs</li>
</ul>
</div>
<div class="site-info">
<p>YOU MUST BE OVER THE AGE OF 18 YEARS TO BUY AND OR USE ANY SOUTH BEACH SMOKE PRODUCT. Nicotine is a highly addictive
substance derived from the tobacco plant. Our products do not treat, diagnose, or cure any disease, physical ailment, or
condition. If you are allergic to nicotene or any combination or inhalents, if you are pregnant or breast-feeding, or if
you have a heart condition, diabetes, high blood pressure or asthma, consult your physician before using South Beach Smoke
nicotene products. Just like traditional tobacco cigarettes, South Beach Smoke Electronic Cegiarettes are not approved by
the American FDA.</p>
</div><!-- .site-info -->
<div class="footer-nav">
<ol>
<li>Copyright © 2013 SmokeSafely.com</li>
<li>Terms and Conditions</li>
<li>Warnings</li>
<li>Privacy Policy</li>
<li>Contact</li>
</ol>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
ここに私が使用しようとしているCSSがあります
/* Footer */
}
footer[role="contentinfo"] {
background-color: #082448;
color: white;
border-top: 1px solid #ededed;
font-size: 12px;
line-height: 2;
margin-left: auto;
margin-right: auto;
}
footer[role="contentinfo"] a {
color: #686868;
}
footer[role="contentinfo"] a:hover {
color: #21759b;
}
footer[role="contentinfo"] ul {
width: 30%;
float: left;
}
footer[role="contentinfo"] p {
width: 65%;
height: 30%;
float: left;
font-size: 10px;
}
footer[role="contentinfo"] ol {
width: 100%;
height: 5%;
float: none;
}
footer[role="contentinfo"] ol li {
float: left;
display: inline;
}
現在、私が苦労しているのは、フッターの背景色が正しく表示されないことです。繰り返しますが、どんな助けも大歓迎です。