• blog – https://www.swindledforjesus.com

    All I want is plain ariel test without automatic line spacing.
    I’ve tried pasting plain text and even using Windows live editor.

    Is the problem in my style.css file in that it does not have the font and spacing I want? Is it easy to change/add or do I need to consider a new theme?

Viewing 3 replies - 1 through 3 (of 3 total)
  • It should be relatively simple. Just look in your style.css, and you can change it to reflect your desires.

    Thread Starter Lautermilch

    (@lautermilch)

    I looked in it, watched some tutorials about this but I still cannot:

    1. Find where I am getting a space between paragraphs. I don’t want them.

    2. Change the font to arial. Is there some other sheet besides style.css

    Here is your css now:

    p, li, .feedback {
    font-family:Tahoma,'Lucida Grande','Lucida Sans Unicode',Verdana,sans-serif;
    font-size:100%;
    }

    Change it to something like:

    p, li, .feedback {
    font-family: Arial,sans-serif;
    font-size:100%;
    }

    And I think when you say “automatic line spacing” you mean that your text is “justified”. So change this:

    element.style {
    text-align:justify;
    }

    To:

    element.style {
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fonts and Spacing Not What I want’ is closed to new replies.