• Resolved Lin Robinson

    (@lin-robinson)


    This is weird (or I’m stupid and need to be wised up). I have just gone through about six themes in two days, trying to customize to replace a previous blog with more or less the same appearance.

    And keep running into NO WAY TO STYLE THE POST CONTENT. It’s weird. Item after item in the CSS files bout comments and such, and almost nothing on the main show… the posts themselves.

    I have been going out of my skull with two themes, Journalized Winter and Integral 1.1 The latter has a class for post content, but it doesn’t work. The post type stays really tiny no matter what I do. I’ve tried changing it’s div to h3, rewritten the CSS class a dozen times.

    Anybody got anything to offer on this?

    Thanks

    Lin

Viewing 8 replies - 1 through 8 (of 8 total)
  • link to the problem site?

    do your posts have inline styles in the content?
    maybe unknown to you from copy/paste or so?

    open the post in the editor in html mode and see if there are extra styles inline with the text.

    Alwyn Botha

    (@123milliseconds)

    My standard answer for this

    If you install Firefox Firebug then when you visit your website you can immediately see the css styling plus line numbers for all those themes you tried

    Move mouse slowly inside content to see the different elements styling applied and the corresponding line numbers

    Thread Starter Lin Robinson

    (@lin-robinson)

    Thanks guys.

    If that’s the case, is there anything I can do about it?

    And why the hell would anybody write a theme that allows css file styling of virtually every itsy detail….EXCEPT THE CONTENT THAT IT’S SUPPOSEDLY ALL ABOUT???????

    Thread Starter Lin Robinson

    (@lin-robinson)

    BTW I have not posted anything, just the original WordPress “Hello World” thing.

    In the templates I see post content div’ed as things like “storyContent” and such, but there are no such classes or ID’s in the CSS file.

    This one really makes me nuts. As you can see, I can control color, spacing, size of fonts in everything except the payoff spot–the posts themselves. Which are too small to be readable and there doesn’t seem to be be a damned thing I can do about it.
    http://mayancalendargirls.com/blog/

    The font size has been set in the p tag as
    13px on a 16px line-height

    p {
        font: 13px/16px Myriad,"Myriad Pro",Palatino,"Rotis Sans Serif",serif;
        margin: 0;
        padding: 2px;
    }

    Just change it to (for example) 14px/18x or overwrite it with another p tag rule.
    `
    p {
    font-size: 14px;
    line-height: 18px;
    }

    Thread Starter Lin Robinson

    (@lin-robinson)

    Thanks very much lockettpotts. That did the trick.

    As you can tell, I’m new at this…and it seems that templates are getting a little harder to figure since the last ones I hacked.

    And thanks to the rest of you, because this general information will be of great help to me in future.

    You can just add the relevant classes and IDs in the CSS file to control anything with an ID or class on it. So the theme does already allow you to control the formatting of the content.

    Erik

    (@southernutahautism)

    Read up on CSS cascasde, specificity, and inheritance: http://www.smashingmagazine.com/2010/04/07/css-specificity-and-inheritance/

    I promise promise promise every single aspect of your post content is very easily styled in any fashion possible.

    The theme might have ID’s or Classes that aren’t in the CSS file, but you just add them. Usually there’s a ID that wraps the post content, that way anything inside can be overpowered by writing your CSS in a way where the ID is in front of the elements, so if it was a div that had the ID of content_wrapper you’d write your CSS like:

    #content_wrapper p {}
    #content_wrapper strong {}
    #content_wrapper h3 {}
    #content_wrapper .headline

    and so on and so forth. The power of CSS cascade and specificity can literally let you make any element however you want.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Themes don't allow styling post content’ is closed to new replies.