• A few people here and elsewhere on the web have been wondering how to get a custom theme stylesheet working on this plugin or how to restyle the default one.

    I was wondering, too, but found the answer. MobilePress is set to call the stylesheet /MobilePress/css/style.min.css by default, even after you’ve added a custom theme.

    To get the custom sheet working, either add an include call within /MobilePress/css/style.min.css to your custom style.css file, or change this line in the header.php of your custom theme:

    <link href=”<?php bloginfo( ‘template_url’ ); ?>/css/style.min.css” rel=”stylesheet” type=”text/css” media=”screen, handheld, print, projection” />

    to this:

    <link href=”<?php bloginfo( ‘template_url’ ); ?>/style.css” rel=”stylesheet” type=”text/css” media=”screen, handheld, print, projection” />

    Then just css away …. simples.

    http://wordpress.org/extend/plugins/mobilepress/

  • The topic ‘Custom Theme Stylesheet solution’ is closed to new replies.