Quote:
Originally Posted by G37Sam
I don't know if this has been asked before, but everytime I access the garage from the navbar, my entire forum switches from the default center orientation to left orientation.
Another thing, everytime I upload a pic for a vehicle, as soon as the uploading is complete I get the following error: Error: Image could not be moved.
I'd appreciate any sort of help I could get, apart from that, this thing is awesome 
|
The image can't be moved error is usually permissions. Change the permissions to 777 on the images/garage/attach folder and any subfolders.
The left orientation happens with some styles. You can fix it by editing the garage_css template
ACP->Styles & Templates->Style Manager
Edit the templates on the style you use and find the VB Pro Garage->garage_css template
Find
Code:
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,blockquote{margin:0;padding:0;}
li{list-style:none;}
Replace with
Code:
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,blockquote{margin:50;padding:0;}
li{list-style:none;}
Find
Code:
body {
width:{vb:stylevar doc_width};
min-width:{vb:stylevar doc_minWidth};
max-width:{vb:stylevar doc_maxWidth};
margin: {vb:stylevar doc_margin};
font-size:{vb:stylevar font.fontSize}px;
color:{vb:stylevar body_color};
line-height:{vb:stylevar line_height};
}
Replace with
Code:
body {
width:{vb:stylevar doc_width};
min-width:{vb:stylevar doc_minWidth};
max-width:{vb:stylevar doc_maxWidth};
font-size:{vb:stylevar font.fontSize}px;
color:{vb:stylevar body_color};
line-height:{vb:stylevar line_height};
}