• Hi guys, Bit of a noob question but i am really stuck tryingto justify the homepage featured column text (Under the 4 images) Looks messy and there is no option to justify text in the cms

    https://www.telfordcomputers.co.uk

    Be gentle i may sell and fix computers but i am new to code.

Viewing 1 replies (of 1 total)
  • If you want all text on your site to be justified, you can add this to the custom CSS file:

    p {
       text-align: justify;
    }

    If you only want it on the home page, do this way:

    .home p {
       text-align: justify;
    }

    Do note that justified text is not usually so great on websites.

Viewing 1 replies (of 1 total)
  • The topic ‘Help "I need some justification"’ is closed to new replies.