- Posts: 13
- Thank you received: 0
Re: Position style
-
Gabri
Inactive member - Topic Author
- New Member
Less
More
12 years 8 months ago #18055
by Gabri
Replied by Gabri on topic Re: Position style
I've added commas, but with no luck.. Still the same
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 8 months ago - 12 years 8 months ago #18066
by ivan.milic
Replied by ivan.milic on topic Re: Position style
add this to template_css.css at bottom:
div.module h3, div.moduletable h3 {
padding: 5px 15px!important;
-moz-border-radius: 10px!important;
-webkit-border-radius: 10px!important;
border-radius: 10px!important;
font-family: 'Cuprum', arial, serif!important;
}
then open template_css.php
find this:
replace it with this:
div.module h3, div.moduletable h3 {
padding: 5px 15px!important;
-moz-border-radius: 10px!important;
-webkit-border-radius: 10px!important;
border-radius: 10px!important;
font-family: 'Cuprum', arial, serif!important;
}
then open template_css.php
find this:
Code:
div.moduletable h3,
div.module h3 {
color:<?php echo $columnHeading; ?>;
background:<?php echo $columnHeadingBgTop; ?>;
background:-moz-linear-gradient(<?php echo $columnHeadingBgTop; ?>,<?php echo $columnHeadingBgBottom; ?>);
background:-webkit-gradient(linear, left top, left bottom, from(<?php echo $columnHeadingBgTop; ?>), to(<?php echo $columnHeadingBgBottom; ?>));
}
replace it with this:
Code:
div.moduletable-style1 h3,
div.module-style1 h3,
div.moduletable-style2 h3,
div.module-style2 h3,
div.moduletable-style3 h3,
div.module-style3 h3,
div.moduletable h3,
div.module h3 {
color:<?php echo $columnHeading; ?>!important;
background:<?php echo $columnHeadingBgTop; ?>!important;
background:-moz-linear-gradient(<?php echo $columnHeadingBgTop; ?>,<?php echo $columnHeadingBgBottom; ?>)!important;
background:-webkit-gradient(linear, left top, left bottom, from(<?php echo $columnHeadingBgTop; ?>), to(<?php echo $columnHeadingBgBottom; ?>))!important;
}
Last edit: 12 years 8 months ago by ivan.milic.
Please Log in to join the conversation.
-
Gabri
Inactive member - Topic Author
- New Member
Less
More
- Posts: 13
- Thank you received: 0
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 8 months ago - 2 years 7 months ago #18078
by ivan.milic
Replied by ivan.milic on topic Re: Position style
Add this at bottom of template_css.css:div.moduletable h3, div.module h3 {padding: 5px 15px!important;-moz-border-radius: 10px!important;-webkit-border-radius: 10px!important;border-radius: 10px!important;font-family: 'Cuprum', arial, serif;}then replace template_css.php with one in zipped attachment:I think that will be it.
Last edit: 2 years 7 months ago by milos.
Please Log in to join the conversation.
-
Gabri
Inactive member - Topic Author
- New Member
Less
More
- Posts: 13
- Thank you received: 0
12 years 8 months ago #18094
by Gabri
Replied by Gabri on topic Re: Position style
Now style2 seems ok (the module at the right), the style 3 (two modules at the left) doesn't have the background (is white instead of dark grey).
Thanks for the support
Thanks for the support
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 8 months ago #18124
by ivan.milic
Replied by ivan.milic on topic Re: Position style
style3 is like that you can change style colors from template parameters or by editing style file if using one of them /styles/styleX.php
that are this variables for :
$columnHeading3 = "#FFFFFF";
$columnHeadingBgTop3 = "#80c400";
$columnHeadingBgBottom3 = "#456903";
$moduleBgTop3 = "#FFFFFF";
$moduleBgBottom3 = "#E3E3E3";
$columnText3 = "#000000";
$columnLink3 = "#000000";
that are this variables for :
$columnHeading3 = "#FFFFFF";
$columnHeadingBgTop3 = "#80c400";
$columnHeadingBgBottom3 = "#456903";
$moduleBgTop3 = "#FFFFFF";
$moduleBgBottom3 = "#E3E3E3";
$columnText3 = "#000000";
$columnLink3 = "#000000";
Please Log in to join the conversation.
Time to create page: 0.094 seconds