Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author victor_jonsson

    (@victor_jonsson)

    Hello!

    This depends on how the code is structured in your theme. You’ll have to look at how the code is written in the file page.php (or single.php) located in your theme directory and make the necessary changes to page-arlima.php, also located in your theme directory.

    The default template (page-arlima.php) is written so that it will work with the themes twentyeleven and twentytwelve.

    Thread Starter mrbowser

    (@mrbowser)

    Hi,
    I cant find page.php or single.php in the theme directory. Im using the theme Atahualpa. How do I know what the necesssary changes are?

    Plugin Author victor_jonsson

    (@victor_jonsson)

    1) Remove all code in page-arlima.php and paste in the code from here https://pastebin.com/KfW8WQzX (It’s really not that different).

    2) To make the articles become fluid you need to set the max-width to “none” for elements having the class .tmpl-article. If you don’t know how to do that the proper way you can copy the following code snippet and put it on line 44 in header.php (located in your theme) right before </head>

    <style type="text/css">
        .tmpl-article {
            max-width: none;
        }
    </style>

    Good luck!

    Thread Starter mrbowser

    (@mrbowser)

    Thanks a lot! Its working now.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sidebars’ is closed to new replies.