Support » Theme: Constructor » [Theme: Constructor] How to ignore the left indent

  • This is a two part question.

    As a normal rule, I like the first line indentation however there are times when I want the entire text to align left. I’ve searched all over, but can’t find a CSS or html code to simply ignore the indentation for a given paragraph. Is there something? Or some way to define a paragraph format that will override, for one paragraph, the default?

    header tags: same question, really. I want my headers to align left without indentation. I’ve managed to change everything else about them using the CSS tab except that.

    Help is appreciated!

    http://wordpress.org/extend/themes/constructor/

Viewing 1 replies (of 1 total)
  • article > h1,
    article > h2,
    article > h3,
    article header h1,
    article header h2,
    article header h3 {
        text-indent:-10px !important;
        margin:0;
        font-weight:700 !important;
        font-size:1.8em;
        line-height:1.4em;

    This is from my recent topic. The text indent for post/page-headers can be negative, so it moves to the left. Find the sweet spot. It’s wonky, but as good as I can solve right now.

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: Constructor] How to ignore the left indent’ is closed to new replies.