• porkchop_001

    (@porkchop_001)


    Hey Guys,

    With the help of you i solved my gap problem. Now the issues lies within the size of the body text. I want just the body text (i.e. the size of the words of the blog entry) to be bigger. When I applied a text-size attribute to main text element:

    *{margin:0;padding:0;font-family:”Gramond”;} (LINE 22)

    It increases the size of the entire blog – including the headings, and the text in my sidebar widget. Am I applying this in the wrong section? Thanks in advance.

    http://understandingteenagers.com.au/blog/wp-content/themes/mystique/style.css

Viewing 3 replies - 1 through 3 (of 3 total)
  • esmi

    (@esmi)

    Unless you provide a link to your site, no one will be able to offer much in the way of specific help.

    ambrosite

    (@ambrosite)

    Since I recall answering your question about the gap, I still have the link to your site. Here’s what you need to change (around line 249 of your CSS file):

    #main {
    min-height: 540px;
    position: relative;
    font-size: 14px; /* <– add this */
    }

    ambrosite

    (@ambrosite)

    Actually, reading your request a little more closely, I think what you really want is this (line 325 of your CSS file):

    .post-content p {
    margin: 0 0 0.8em;
    padding: 0;
    font-size: 14px; /* <– add this */
    }

    That will restrict the font size only to the main content of the blog posts.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Another Mystique Question: Body Text’ is closed to new replies.