Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter kirkward

    (@kirkward)

    Refining or editing the question.

    (1) I found that a custom stylesheet caan be called in index-pdf.php, so creating custom styles seems quite possible.

    (2) Which leaves the first part of the question rewritten as: “How can I use a different stylesheet for each different post or page?”

    Plugin Author Viljami Kuosmanen

    (@zuige)

    Hi!

    Sorry for the late response.

    You can use default WordPress functions to conditionally include stylesheets into your templates.

    Example:

    <?php if(is_page('sample-page')) : ?>
    <style>body { background:black }</style>
    <?php endif; ?>

    Let me know if you would like further assistance.

    Cheers!

    Thread Starter kirkward

    (@kirkward)

    Great news.

    As I said in the other thread, it will be two weeks minimum before I get back to testing.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Multiple Size and Look Documents’ is closed to new replies.