-
AuthorPosts
-
TomC Moderator
TomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 29, 2007 at 1:06 am #120506How can I remove/unpubish the Site Tools function from Xenia II template?
May 29, 2007 at 1:31 am #221057Open your index.php file in template folder. Find these lines:
# Enable users option
$ja_tool = 3; // 0: disable all; 1: disable color, enable font; 2: enable color, disable font; 3: enable all.To disable all tools. Set $ja_tool = 0;
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 29, 2007 at 2:10 am #221060THANK YOU !!
In follow up to that question, how/where in the code can I designate the width of the site that I want. I read the user manual and found the lines indicating the following:
# Change the width of the template
$ja_width_default = ‘wide’; // ‘narrow’: 800×600; ‘wide’: 1050×950; ‘auto’: fluid width(I changed the ‘wide’ parameters to 1050×950 … but it doesn’t seem to work when I view the site.)
Does the width have to be one of the standard dimensions (i.e. 1024×768)?
:confused:
Menalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
May 29, 2007 at 6:40 am #221065<em>@tcraw1010 16756 wrote:</em><blockquote>THANK YOU !!
In follow up to that question, how/where in the code can I designate the width of the site that I want. I read the user manual and found the lines indicating the following:
# Change the width of the template
$ja_width_default = ‘wide’; // ‘narrow’: 800×600; ‘wide’: 1050×950; ‘auto’: fluid width(I changed the ‘wide’ parameters to 1050×950 … but it doesn’t seem to work when I view the site.)
Does the width have to be one of the standard dimensions (i.e. 1024×768)?
:confused:</blockquote>
# Change the width of the template
$ja_width_default = 'wide'; // 'narrow': 800x600; 'wide': 1024x768; 'auto': fluid widthOn line 776 in the template_css.css you find this:
/* MAIN LAYOUT DIVS
--------------------------------------------------------- */
#ja-wrapper {
width: 760px;
margin: 0 auto;
padding-left: 8px;
background: url(../images/shadowleft-bg.gif) repeat-y top left #FFFFFF;
text-align: center;
}.wide #ja-wrapper {
width: 950px;
}.auto #ja-wrapper {
width: 90%;
}If you set it to wide:
$ja_width_default = 'wide'; // 'narrow': 800x600; 'wide': 1050x950; 'auto': fluid width
Then you can change the width here:
.wide #ja-wrapper {
width: 950px;
} -
AuthorPosts
This topic contains 6 replies, has 3 voices, and was last updated by Menalto 17 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum