And I also want to change mouse selection I edited ::selection and ::-moz-selection bu didn’t change. How can I do that correctly ?
Hi! I am sorry but this isn’t a support forum for third party plugins. The plugin might not be compatible with this theme.
The only thing you can do is open style.css, find:
.single-template-1 .single-content {
position: relative;
padding-top: 35px;
border-top-width: 5px;
border-top-style: solid;
line-height: 145%;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
-ms-word-wrap: break-word;
word-wrap: break-word;
}
Replace it with:
.single-template-1 .single-content {
position: relative;
padding-top: 35px;
border-top-width: 5px;
border-top-style: solid;
line-height: 145%;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
-ms-word-wrap: break-word;
word-wrap: break-word;
padding-left: 50px;
}
It will add some padding on the left side.
Sorry about my wording about my problem , Thank you so much for helping me.
You are referring to this code in style.css?
::selection {
background: rgba(0,0,0,0.9);
color: #fff;
text-shadow: none;
}
::-moz-selection {
background: rgba(0,0,0,0.9);
color: #fff;
text-shadow: none;
}
I think you can add !important to make it work, like this:
::selection {
background: #000 !important;
color: #fff !important;
text-shadow: none;
}
::-moz-selection {
background: #000 !important;
color: #fff !important;
text-shadow: none;
}
Thank your for helping me , patiently. It worked well , now.