• Hi guys, I’m a relative new-comer to wordpress and xhtml/css in general. I’ve just got my blog up and running on SliceHost with an Ubuntu installation running the latest MySQL and PHP. I’ve got almost everything looking the way I want it except for a couple little styling problems I can’t seem to figure out:

    1) My blog (http://www.meganraetolete.com) has a static page as the landing page (configured according to http://codex.wordpress.org/Creating_a_Static_Front_Page). I set the posts page as the static empty “Blog” page using the default page template. I styled the inner-content div to have rounded corners and inset box shadow. It looks fine on all of the static pages, but on the Blog page the div doesn’t expand around the post content.

    2) On the gallery page I can’t seem to get the album thumbnails to center in the table cells. I’ve tried setting text-align: center; for the table cells, but it doesn’t seem to do anything. I’d also like to remove the blue background for the even numbered rows, but can’t seem to figure that out either.

    3) The Blog navigation item has a little space to the right of it even though it is not present in the page title, I have been racking my brain to figure out how to get rid of it.

    I know this is a lot to ask in one post, so any little help anyone could offer would be much appreciated.

    Other (possibly) relevant info:
    Theme: Modularity Lite
    Plugins: MCE Table Buttons, Shashin

Viewing 4 replies - 1 through 4 (of 4 total)
  • Alwyn Botha

    (@123milliseconds)

    . I’d also like to remove the blue background for the even numbered rows, but can’t seem to figure that out either.

    screen.css (line 65

    tbody tr:nth-child(2n) td, tbody tr.even td {
    background: none repeat scroll 0 0 #E5ECF9;
    }

    Thread Starter mtolete

    (@mtolete)

    Thanks for the reply! I thought you were supposed to only override screen.css but not actually modify it?

    Alwyn Botha

    (@123milliseconds)

    Correct; I just pointed you to the CSS line number so you can see the css involved.

    http://codex.wordpress.org/Child_Themes

    Thread Starter mtolete

    (@mtolete)

    Cool, that took care of it, thanks! I’m still trying to figure out number 1 on my list. I also realized that the div in question is the container-inner div. Any ideas for that one by any chance?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘inner-content div doesn't expand with post content’ is closed to new replies.