• droach

    (@droach)


    Issue 1: Would someone please help me stop my text from indenting in the post section. if you go to https://www.max-roach.com you will see that the first line of each paragraph is indented. I have formatted the text to be justified and blockquote and it continues to default to single line spaced, with an indent. I would also like the paragraphs to have more space between them.

    Help! I thought writing a post would be the easiest thing to do. This is very frustrating.

    Issue 2: I would also like the post text to NOT stretch across the screen but when I adjust the margins – the header moves, as well.

    Issue 3: Would also like my post NOT to have the “welcome” header, but deleting it removes the title from the menu.

    I am using the WordPress Constructor theme.

    thanks.

Viewing 1 replies (of 1 total)
  • antonshevchuk

    (@antonshevchuk)

    1. CSS rule:

    .hentry .entry p{
        text-indent:0px !important;
    }

    2. I’m not sure what you want

    3. CSS again for hide title on homepage (for all posts on home):

    .home .title {
    display:none;
    }

    or for your welocome post with hardcoded post id:

    .home #post-53 .title {
    display:none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Text alignment Issues: indents, position, spacing’ is closed to new replies.