• grizzle

    (@grizzle)


    I asked a question previously about how my text was crossing right outside of its column and through the sidebar. Someone told me this:

    “grizzle, It looks like your p tag has no style.
    You need to make one using this class
    .entrytext p
    then add your padding and or margins to it.

    Good luck with the blog”

    I am not sure what the p tag is or how to edit it. I know how to go into the css editor and add whatever, I just need to know which .php and where to add it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • moshu

    (@moshu)

    I know how to go into the css editor

    Then do it. That reply was CLEARLY referring to a stylesheet. Stylesheet = style.css (for starters).

    Thread Starter grizzle

    (@grizzle)

    I was CLEARLY looking for more help than that. Would you like to tell me what to add into my style sheet? Or do I just add “.entrytext p” anywhere?

    moshu

    (@moshu)

    According to what your friend said: you have a div class=”entrytext” and inside that div your text is arranged in p (a.k.a. paragraph) tags.
    Which means you have to define the properties for your paragraph tags in the entrytext div…

    .entrytext p {
    color: red;
    }

    That’s how the CSS syntax works.
    You add more different

    properties: values;
    properties: values;
    properties: values;

    Thread Starter grizzle

    (@grizzle)

    Thanks, that contextualizes it for me. The link you provided should help too.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘What the heck is my P Tag?’ is closed to new replies.