-
AuthorPosts
-
bvk1987 Friend
bvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
March 25, 2013 at 11:15 pm #186201Hi everyone,
I want to change the background color of the modules selected on the attached screenshot. I would like to have it in white.
Simple question and probably simple answer 🙂
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
March 28, 2013 at 8:20 am #488120Hi bvk1987,
You can open file: /templates/ja_brisk/css/custom.css, add this css rule:
.ja-sl-1 {
background: #1ba1e2; <<<< change to your desired color
}
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
March 28, 2013 at 10:50 am #488154Unfortunately, position 1 (with “Incredible Features of Brisk) also gets a white background when I apply what you suggest. I only want to have the selected part in the screenshot white (position 3, 4 and 7 in my case).
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
March 29, 2013 at 8:57 am #488258Hi,
Do you mean that you want like this?
If yes, in the same custom.css file, add this new css rule:
.ja-sl-1 .container .row {
background: white;
}
Regards
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
March 30, 2013 at 9:09 am #488333What I would like to have white is what I have selected in my first post, over the full width. Your first solution did the job, but the “Incredible Features of Brisk” band needs to remain blue.
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
April 2, 2013 at 1:19 pm #488587So the space mentioned in red (see image) is what I would like to have white instead of blue. The band above it needs to remain blue (Incredible Features of Brisk).
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
April 9, 2013 at 8:09 am #489298Any ideas? 🙂
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 10, 2013 at 4:13 am #489389Apologies for this late response, because I need time to find out solution to achieve that. Here is my suggestion:
1) Change php code file
Open templates/ja_brisktplsblocksspotlight-1.php filefrom
<section class="wrap ja-sl ja-sl-1">
<div class="container"><?php if($this->countModules('position-1')) : ?>
<div class="<?php $this->_c('position-1') ?>">
<jdoc:include type="modules" name="<?php $this->_p('position-1') ?>" style="raw" />
</div>
<?php endif; ?><?php
$this->spotlight ('spotlight-1', 'position-2, position-3, position-4')
?>
</div>
</section>
change to
<section class="wrap ja-sl ja-sl-1">
<?php if($this->countModules('position-1')) : ?><div class="<?php $this->_c('position-1') ?>">
<div class="container">
<jdoc:include type="modules" name="<?php $this->_p('position-1') ?>" style="raw" />
</div>
</div>
<?php endif; ?>
<div class="topspotlight">
<div class="container">
<?php
$this->spotlight ('spotlight-1', 'position-2, position-3, position-4')
?>
</div>
</div>
</section>
2) Change css file
Open templates/ja_brisk/css/custom.css file
Add new script
.topspotlight {
background: red !important;
padding-top: 40px;
padding-bottom: 40px;
}.ja-sl-1 {
padding-bottom: 0;
}
Let me know the result
1 user says Thank You to Ninja Lead for this useful post
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
April 10, 2013 at 5:55 pm #489466Thank you, now it starts to look very good. I am left with two small questions. Please have a look at the image I uploaded.
1. Can the white line above the red square be removed? Or that the area in the red square can be white? It has something to do with Class = “sl-style” in the “Spotlight 1: title” module.
2. The text as pointed out with the black arrows does not look good. It has a shadow. I would prefer it to be just blue or black (no shadow).
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 11, 2013 at 1:32 am #489472Hi,
Could you post your site url here and set optimize css in template manager to No for further checking?
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
April 13, 2013 at 9:55 am #489747PM’s send buddy, thanks in advance!
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
April 15, 2013 at 10:09 pm #489967You mean just the website right? Or back-end access? The website itself works fine here.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 16, 2013 at 8:40 am #490005Hi,
Maybe IP from my end can’t access your site, could you add my ip range for exception so that I can access your site? Please check my PM
Regards
bvk1987 Friendbvk1987
- Join date:
- October 2012
- Posts:
- 187
- Downloads:
- 10
- Uploads:
- 31
- Thanks:
- 66
- Thanked:
- 6 times in 1 posts
April 23, 2013 at 7:49 pm #490857I have send you a pm. It would be fine to just have the letters below in black which say HP, Dell and Lenovo. Can you tell me how to do that?
AuthorPostsThis topic contains 20 replies, has 3 voices, and was last updated by bvk1987 11 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum