html - CSS creating image links next to each other -



html - CSS creating image links next to each other -

i trying create set of 4 icons link rest of website. @ moment coding works fine until 4 set in 1 works.

i using foundation create responsive website.

<div class="row"> <div class="large-6 large-offset-6 medium-6 medium-offset-6 columns"> <div id="portfolio_link"> <a href="#portfolio_page"> <img src="img/portfolio.png" style="width:80px"> </a> </div> </div> <div class="large-6 large-offset-6 medium-6 medium-offset-6 columns"> <div id="contact_link"> <a href="#contact_page"> <img src="img/contact.png" style="width:80px"> </a> </div> </div> <div class="large-6 large-offset-6 medium-6 medium-offset-6 columns"> <div id="home_link"> <a href="#home_page"> <img src="img/home.png" style="width:87px"> </a> </div> </div> <div class="large-6 large-offset-6 medium-6 medium-offset-6 columns"> <div id="about_link"> <a href="#about_page"> <img src="img/about.png" style="width:80px"> </a> </div> </div>

what columns set in _settings.scss? if have large-6, going take 50% of page. can either set each of large-3, or alter total-columns 24.

$total-columns: 12;

html css image hyperlink zurb-foundation

Comments

Popular posts from this blog

javascript - THREE.js reposition vertices for RingGeometry -

javascript - I need to update the text of a paragraph by inline edit -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -