- Posts: 24
- Thank you received: 0
Is it Possible to Change Width to Percentage % ?
-
tenoch
Inactive member -
Topic Author
- Member
-
Less
More
14 years 5 months ago #5872
by tenoch
Is it Possible to Change Width to Percentage % ? was created by tenoch
Hi
I want to modify css files, to make Width 98%, and not in pixels
Is it possible?
How can I do this?
Thanks
I want to modify css files, to make Width 98%, and not in pixels
Is it possible?
How can I do this?
Thanks
Please Log in to join the conversation.
-
pirossi
Inactive member -
- Member
-
Less
More
- Posts: 146
- Thank you received: 11
14 years 5 months ago - 14 years 5 months ago #5873
by pirossi
Replied by pirossi on topic Re: Is it Possible to Change Width to Percentage % ?
The easiest way for that is to edit templates\hot_rockin\css\template_css.php and add these two lines:
inside body to look like this:
You can experiment with the values.
Code:
margin-left: 1% !important;
margin-right: 1% !important;
Code:
body {
color:<?php echo $bodyText; ?>;
margin-left: 1% !important;
margin-right: 1% !important;
}
You can experiment with the values.
Last edit: 14 years 5 months ago by pirossi.
Please Log in to join the conversation.
-
tenoch
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 24
- Thank you received: 0
14 years 5 months ago #5875
by tenoch
Replied by tenoch on topic Re: Is it Possible to Change Width to Percentage % ?
Hi
I tried it, but it did not worked
This only added a margin of 1% on each side, but main content still does have the pixel width restriction that the template have in Adminstration
Thanks
Regards
I tried it, but it did not worked
This only added a margin of 1% on each side, but main content still does have the pixel width restriction that the template have in Adminstration
Thanks
Regards
Please Log in to join the conversation.
-
tenoch
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 24
- Thank you received: 0
14 years 5 months ago #5876
by tenoch
Replied by tenoch on topic Re: Is it Possible to Change Width to Percentage % ?
ok
I found how to do it
I Replaced this:
With this:
Regards
I found how to do it
I Replaced this:
Code:
.wrapper,.footer_wrap,.main_area {
width:<?php echo $templateWidth; ?>px;
}
<?php
$bottomWidth = $templateWidth + 16;
?>
.bottom {
width:<?php echo $bottomWidth; ?>px;
}
<?php
$pathWidth = $templateWidth - 230 - 468;
?>
.path {
width:<?php echo $pathWidth; ?>px;
}
#content_wrap {
width:<?php echo $contentWidth; ?>px;
}
With this:
Code:
.wrapper,.footer_wrap,.main_area {
width:<?php echo $templateWidth; ?>%;
}
<?php
$bottomWidth = $templateWidth;
?>
.bottom {
width:<?php echo $bottomWidth; ?>%;
}
<?php
$pathWidth = $templateWidth - 230 - 468;
?>
.path {
width:<?php echo $pathWidth; ?>px;
}
#content_wrap {
width:<?php echo $contentWidth; ?>%;
}
Regards
Please Log in to join the conversation.
Time to create page: 0.159 seconds