Well, I found one way to do it. Here's how:
in
templates/jf_creativia/css/media_queries.css
replace:
max-width: 960px; /* 960 px */
with:
in
templates/jf_creativia/css/template.css
replace:
div#top .inner, div#bot .inner {max-width: 960px;}
with:
div#top .inner, div#bot .inner {width: 960px !important;}
in
templates/jf_creativia/index.php
comment out:
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/responsive.css', $type = 'text/css');
This alone most probably will not be perfect, but after some tweaking with the help of Firebug should be alright. Also some stuff broke after disabling responsive.css, I didn't need them so I'm fine with that. Also probably need to edit the img class as well in
template.css
img {
border: 0 none;
max-width: 100%;
height: auto;
vertical-align: middle;
}
If anyone has a more solid idea, I'm all ears =)