kominid wrote:
My background image disappeared
The background image is part of your desktop template, that's why Mobile_Basic template doesn't use it. But there is a file, /templates/mobile_basic/css/custom.css, where you can store your customized CSS styles to adjust Mobile_Basic template, e.g. set background image:
.ui-content {
background: url(/images/oldbackground3.jpg) center top repeat fixed;
}
Note that this file is not changed during template upgrades, and so it is safe place for such tweaks.
kominid wrote:
a line of text didn't wrap on the homepage
Most likely may be fixed via custom.css as wellL
.ui-content {
word-break: break-word;
}
kominid wrote:
my image gallery wouldn't scale
Image width of 650px is hardcoded in your styles. Try the following fix in custom.css:
.vsig1_0 {
width: auto;
max-width: 650px;
}
.vsig_top1_0 {
width: auto;
max-width: 631px;
}
.mjwideimg > img {
box-sizing: border-box;
}
kominid wrote:
header image disappeared!
Your header image seems to be a Random Image module. As desktop and Mobile_Basic templates have different module positions names, it's necessary to either duplicate that module in one of Mobile_Basic positions (e.g. mj_top), or use "Mobile - Proxy Module" module to display original module in one of mobile's module positions.