このWeb サイトで、Google+ と Facebook へのリンクを追加する必要があります。div ボックスに影響を与える CSS を取得できません。また、img タグを使用して写真を追加しようとしましたが、正しいディレクトリのように見え、他の画像も同じディレクトリにあるにもかかわらず、写真を読み込めません。メニューバーの右側に2つのアイコンを追加したい。
HTML:
<div class="art-nav">
<ul class="art-menu">
<?php art_menu_items(); ?>
</ul>
<div id="facebooktopmarc">
<a href="https://www.facebook.com/raadmal">
<img src="images/facebook.png" alt="Go to Facebook!"/>
</a>
</div>
<div id="googleplustopmarc">
<a href="https://www.facebook.com/">
<img src="images/google-plus.png" alt="Go to Google-plus!"/>
</a>
</div>
</div>
CSS:
#facebooktopmarc {
background-image: url("images/facebook.png");
background-position: right center;
background-repeat: no-repeat;
display: block;
float: right;
height: 25px;
margin: 0 5px 0 0;
position: relative;
width: 25px;
}
#googleplustopmarc {
background-image: url("images/google-plus.png");
background-position: right center;
background-repeat: no-repeat;
display: block;
float: right;
height: 25px;
margin: 0 5px 0 0;
position: relative;
width: 25px;
}