Jess McKenzie
Jess McKenzie

Reputation: 8385

Aligning Social Media Share Icons

I am using the DigG Digg Social Media Plugin for Wordpress using the manual code option:

My HTML is the following but this is not much use as its generated via PHP - I have implemented the media class and the boxes!

What my main issue is how can I get all the icons aligned via the same height?

enter image description here

Live URL

HTML:

        <div class="diggSocialMedia">
            <div class="box0">
                <?php dd_fbshare_generate('Compact') ?>
            </div>
            <div class="box1">
                <?php dd_twitter_generate('Compact','hakatours') ?>
            </div>
            <div class="box2">
                <?php dd_fblike_generate('Like Button Count') ?>
            </div>
            <div class="box3">
                <?php dd_google1_generate('Compact') ?>
            </div>
        </div>

Upvotes: 0

Views: 171

Answers (2)

j08691
j08691

Reputation: 207891

.diggSocialMedia > div {
    vertical-align:top;
}

Upvotes: 1

CRABOLO
CRABOLO

Reputation: 8793

.diggSocialMedia {
    height: 0;
    overflow: visible;
}

Upvotes: 0

Related Questions