Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1262859

    yhshin1020
    Participant

    Hey,

    I am trying to get a text left-aligned yet centered to the page so i’ve given it a (custom headline) a class of “omtraininghead” and put this css code:

    h2.omtraininghead{
      margin-left: auto;
      margin-right: auto;
    }

    but here’s what i get: http://imgur.com/a/qn6cn

    I want to center the element such that the text starts in line with the paragraph below it.

    How can I achieve this, and why isnt margin-left and right trick not working?

    Thanks.

    #1262862

    yhshin1020
    Participant
    This reply has been marked as private.
    #1263096

    Friech
    Moderator

    Hi There,

    Thank you for writing in! It will not work, unless you define a width for it.

    h2.omtraininghead{
      margin-left: auto;
      margin-right: auto;
      width: 500px;
    }

    Hope it helps, Cheers!