I have a template and I was wondering how to edit the background color on the page blocks? On one page, everything is transparent except the block that shows my current membership icon.
I have a template and I was wondering how to edit the background color on the page blocks? On one page, everything is transparent except the block that shows my current membership icon.
|
Do you have my membership badge mod installed ? Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
Membership badge mod? The only mod for memberships I got with Dolphin is the Membership mod. But that whole box is white, even where the text is. I just need to know what css I need to edit to fix this. I believe it's a css problem.
Is it a free or paid mod? If it's paid, then that's why i don't have it. The website I am setting up is on a free host at the moment. It won't be released for some time, but I would like to have everything finished before I release it. |
10 seconds to find using firebug.
div.mbp-level-content {
min-height: 116px;
padding-left: 126px;
}
Add the background color.
div.mbp-level-content {
min-height: 116px;
padding-left: 126px;
background-color: #000000;
} https://www.deanbassett.com |
I'm looking and I don't have a level.css in the base template folder or the template folder that I am currently using.
Found it. Thank you. Didn't think to check modules/boonex/membership/templates/base/css/
I'm still having a problem. I want the background to be transparent because of my background image. How do I do that? Right now, I have this:
div.mbp-level-content {
But the background is still white. |
Sorry., https://www.deanbassett.com |
It's a free template from the TMD Hosting website. In my previous post, I edited it. I'm still having a problem. I edited the content in the base template folder. When I changed to black (#000000), it changed fine. When I typed transparent, it stayed white. |
Then change that edit back to what it was and change this instead. It's in the same file.
div.mbp-current-level div.mbp-level {
background-color: #FFFFFF;
margin: 0;
padding: 10px;
position: relative;
}
Change to this.
div.mbp-current-level div.mbp-level {
background-color: transparent;
margin: 0;
padding: 10px;
position: relative;
}
https://www.deanbassett.com |
Thank you so much. That worked. I've been trying to get that figured out for close to a week now and you helped me get it within 20 minutes. Thank you again.
Ran into another problem but got it fixed. I put the background-color: transparent; under div.mbp-current-level div.mbp-level instead of div.mbp-current-level. It's working fine now 100%. Thank you. |
If your not using firefox, then you should. There is a addon for firefox called firebug that helps you find stuff like this. Caching has to be off in dolphin to use it. https://www.deanbassett.com |
Turn off the dolphin caching while doing template work. https://www.deanbassett.com |
Thanks for the tip. I do have Firefox. I'll get that in a little while so if I run into any more problems, maybe I'll be able to get it fixed. |
Another tip. https://www.deanbassett.com |
Thank you. You've been very helpful. |