Hi Bojan
You are being very helpful and knowledgeable.
My mistake was in using a separation line by the use of:
////////////////////////////////////
This line of forward slashes completely scrambled the code following it.
I revisited your code and in-putted the following into my “Appearances-Edit CSS” and it now works.
Thank you again.
BTW do you have a donation/payment link ??
Code now in use:
/* ///////////////////// code for 310px sidebar
@media screen and (min-width: 1200px) {
#sidebar {
width: 310px;
margin-right: -320px;
float: right;
}
.content-two-columns {
width: 842px;
}
}
*/
/* ////////////////////////// code for 250px sidebar */
@media screen and (min-width: 1200px) {
#sidebar {
width: 250px;
margin-right: -260px;
float: right;
}
.content-two-columns {
width: 900px;
}
}