- Posts: 44
- Thank you received: 0
styles
-
Jeannine
Inactive member -
Topic Author
- Member
-
Less
More
11 years 9 months ago #32230
by Jeannine
Hello there.
I am having difficulties to figure out where to edit some styles as for example the body background image being repeated. I can of course simply delete the image, but would rather edit css..
where to find the style sheet for .ui-overlay-c for example?
Thanks in advance
I am having difficulties to figure out where to edit some styles as for example the body background image being repeated. I can of course simply delete the image, but would rather edit css..
where to find the style sheet for .ui-overlay-c for example?
Thanks in advance
Please Log in to join the conversation.
-
milos
Support Staff -
- Moderator
-
Less
More
- Posts: 6829
- Thank you received: 724
11 years 9 months ago #32234
by milos
Hi Jeannine,
In Hot Responsive template, the body image is defined in file /templates/hot_responsive/css/template.css.php (not in template_css.css). So, as you can see, many things in this template are dynamically generated using PHP or jQuery.
You can disable the image if you edit this part:
to this:
Regards
Milos
In Hot Responsive template, the body image is defined in file /templates/hot_responsive/css/template.css.php (not in template_css.css). So, as you can see, many things in this template are dynamically generated using PHP or jQuery.
You can disable the image if you edit this part:
Code:
.ui-body-c, .ui-overlay-c {
background:<?php echo $body_bg; ?> url(<?php echo $template_path ?>/images/bg<?php if($templateStyle==5) { echo "2"; } ?>.png) !important;
}
Code:
.ui-body-c, .ui-overlay-c {
background:<?php echo $body_bg; ?> !important;
}
Regards
Milos
The following user(s) said Thank You: Jeannine
Please Log in to join the conversation.
Time to create page: 0.152 seconds