Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author John Gardner

    (@jgardner03)

    in your theme’s stylesheet, I notice the following:

    #content .post p, #content .page p {
        margin: 0;
        padding: 0 0 20px;
    }

    That specificity of .post and .page that’s causing it not to apply on the portfolio pages. I’m assuming there’s another section in that stylesheet that adds margin and padding for unordered and ordered list items as well.

    You could either remove the .post and .page specificity to get it working on the portfolio item, or you can add .portfolio specificity to get it working.

    Using the last section as a guide, here’s how you could add additional specificity to get it working:

    #content .post p, #content .portfolio p, #content .page p {
        margin: 0;
        padding: 0 0 20px;
    }
    Thread Starter zelky

    (@zelky)

    Hi jgardner03,

    You know what my CSS skills (not so advanced but…) probably should have picked that up with Firebug etc.

    I am extremely grateful that you’d go to these lengths to assist me with what turned out to be a general problem and nothing to do with your great plugin.

    Thank you again for your time and patience.

    Thread Starter zelky

    (@zelky)

    I forgot to say I am using Catalyst framework with Dynamic theme, and I can add custom CSS.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Arconix Portfolio Gallery] Formatting?’ is closed to new replies.