Not sure if this is by design or not but with that setting, I view the site initially on one machine/monitor resolution and it remains the same regardless of which other machine/resolution I view it on. Is there any way to disregard that cache setting for this module alone? Also unsure if this is a bug, feature request, support request or what.

Comments

n1k’s picture

You should try the CacheExclude Module which allows you to disable the Cache for certain sites.
http://drupal.org/project/cacheexclude

Otherwise you could use this piece of code (Cache Exclude Module also works like this):

function modulename_init() {
  if (drupal_match_path($_GET['q'],'module_url/*')) {
    $GLOBALS['conf']['cache'] = FALSE;
  }
}

You could also try to adjust the resolution settings or combine it with Omega.