- Posts: 103
- Thank you received: 1
Background image change in Sportal
-
joa
Inactive member -
Topic Author
- Member
-
Less
More
12 years 1 week ago - 12 years 1 week ago #28200
by joa
Background image change in Sportal was created by joa
Hi, I am new to the template and tried to figure out how to change the background image of my site. In the template style options it doesn't let me choose a path and I tried to search in the css file.
I can choose Dark Light or None only. Where can I change it to upload my own background image?
Thx
I can choose Dark Light or None only. Where can I change it to upload my own background image?
Thx
Last edit: 12 years 1 week ago by joa.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 6 days ago #28213
by ivan.milic
Replied by ivan.milic on topic Background image change in Sportal
In template_css.css you hav ethis:
just add your background property definition as last property so it overrides default one
Code:
body {
font-size:<?php echo $mainFontSize; ?>px;
color:<?php echo $bodyText; ?>;
<?php if ($backgroundImage!="none") { ?>
background:<?php echo $backgroundColor; ?> url(<?php echo $template_path; ?>/images/bg_<?php echo $backgroundImage; ?>.png);
<?php }else{ ?>
background:<?php echo $backgroundColor; ?>;
<?php } ?>
}
just add your background property definition as last property so it overrides default one
Please Log in to join the conversation.
-
joa
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 103
- Thank you received: 1
12 years 6 days ago #28227
by joa
Replied by joa on topic Background image change in Sportal
Thanks but I cant find this block in template_css.css
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 6 days ago #28233
by ivan.milic
Replied by ivan.milic on topic Background image change in Sportal
Sorry it's template_css.php
The following user(s) said Thank You: joa
Please Log in to join the conversation.
-
joa
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 103
- Thank you received: 1
12 years 5 days ago #28242
by joa
Replied by joa on topic Background image change in Sportal
can you highlight where in the code or send me an example syntax?
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 5 days ago #28262
by ivan.milic
Replied by ivan.milic on topic Background image change in Sportal
body {
font-size:<?php echo $mainFontSize; ?>px;
color:<?php echo $bodyText; ?>;
<?php if ($backgroundImage!="none") { ?>
background:<?php echo $backgroundColor; ?> url(<?php echo $template_path; ?>/images/bg_<?php echo $backgroundImage; ?>.png);
<?php }else{ ?>
background:<?php echo $backgroundColor; ?>;
<?php } ?>
background:.....
}
font-size:<?php echo $mainFontSize; ?>px;
color:<?php echo $bodyText; ?>;
<?php if ($backgroundImage!="none") { ?>
background:<?php echo $backgroundColor; ?> url(<?php echo $template_path; ?>/images/bg_<?php echo $backgroundImage; ?>.png);
<?php }else{ ?>
background:<?php echo $backgroundColor; ?>;
<?php } ?>
background:.....
}
Please Log in to join the conversation.
Time to create page: 0.169 seconds