Page 1 of 1
site_logo.gif issues...
Posted: Thu Jul 25, 2013 1:45 am
by SHIVA_
I had an issue with my site, where it reverted to plain HTML. In the ACP, under styles I refreshed the styles and the Styles came back, but now the site_logo.gif is showing as a thumbnail. I did delete site_logo.gif and uploaded it with no change.
this is how it supposed to look:
this is how it looks now.
Re: site_logo.gif issues...
Posted: Thu Jul 25, 2013 1:51 am
by stevemaury
Did you refresh the imageset?
Re: site_logo.gif issues...
Posted: Thu Jul 25, 2013 2:01 am
by SHIVA_
Yes. It didn't work. I did a search and found this:
if you want to fix your logo
Open
imageset/imageset.cfg
Find
Code: Select all
img_site_logo = site_logo.gif*52*139
and edit the dimensions accordingly.
Admin panel>styles>imagesets>refresh
Then press F5 to refresh your forum index.
it worked to bring back the site_logo to regular size, but now the forum width is fixed and the site_logo is protruding. How do I un-fix the forum width? Thanks.
Re: site_logo.gif issues...
Posted: Thu Jul 25, 2013 2:20 am
by SHIVA_
Search is a great thing. I used this instruction and managed to fix the width issue.
I made the Min Width the min pixels to work my site_logo and did not add a "width" but added "margin: 0 auto;"
padding: 0 20px;
min-width: XXXpx;
margin: 0 auto;
Thanks.
Open styles/prosilver/theme/common.css, find:
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
}
and change it to:
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
width: 760px;
margin: 0 auto;
}
Next, go into you Administration Control Panel, click on the "Styles" tab at the top, click on "Themes" under "Style components" on the left, and click on "Refresh" next to the theme/style you have edited.