Hello, I am using Black Version as a demo.
How can I make the background color of it white? I want to make the same color as the mobile theme.
Hello !
For that you can use this css code: .td-black .td-main-content-wrap {
background-color: red;
}
The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5
I hope this was helpful !
Thank you !
Hi,
The code for for mobile theme can be set from theme panel -> https://i.imgur.com/o62jgva.png
Thank you!
Hi,
Using the responsive version the mobile will look like this -> https://i.imgur.com/uhVFpw0.png if you want to to change the color for the mobile theme plugin, then you need to apply this custom css:
#td-outer-wrap {
background-color: #1a1a1a;
}
.td_module_mob_1 .entry-title a, h1, h2, h3, h4, h5, h6, .post *, .comments > * {
color: #fff!important;
}
.td_module_mob_1 .td-post-date {
color: #bcbcbc;
}
-> https://i.imgur.com/AGwsB8d.png
The code need to be set in theme panel > mobile theme > custom code > css
Thank you!