• Resolved asanz

    (@asanz)


    I cant seem to figure out how to center glyficons i’m using on my hueman site. On andresanz.com, I have 4 icons on the bar on the right that are not centered, but I’m using a div with class=”col-md-c text-center”, but I cant seem to implement a css coreection to center them.

    Using inspectin, they seem to be right-justified, but I cant figure out where?

    Any help is appreciated

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi asanz. The padding on the individual div elements is forcing the icons to the right. The icons respect the left padding, which is 15px, and then overflow the right side of the parent element. Try removing the padding:

    .col-md-3 {
      padding: 0;
    }

    That should center them within the div.

    Thread Starter asanz

    (@asanz)

    Spot on – Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can't figure out hoe to correct this’ is closed to new replies.