hey, sorry for the late reply, I actually haven't looked at it since my last post. everything to do with changing the colours after doing the initial setup to add a new one is done in .../theme/custom/grey.css and .../theme/colours.cssdbrewood wrote: โTue Oct 25, 2022 1:33 pm Okay I've put the changes in grey.css and colours.css, to be honest I'm not seeing much of a change.....
Also I can't find the margin code:Can you please advise where it is found?Code: Select all
ul.topiclist li.row dl { margin: 1px 1px }
I thinking it might be easier for me to copy your colours and grey css files once you've completed fixing all the colour issues?
Any ideas as to how to fix the white 'Post Reply' text?
I've added to the bottom of my .../theme/colours.css :
Code: Select all
/* grey */
.grey .headerbar {
background-color: grey;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
background-image: linear-gradient(to bottom, grey 0%, dimgrey 100%);
}
.grey .forabg, .grey .forumbg {
background-color: yellow;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 35px, black 100%);
background-image: linear-gradient(to bottom, grey 0%, dimgrey 35px, black 100%);
}
.grey .pollbar5 { background-color: #a76504; }
.grey .action-bar .coloredbutton {
border-color: black;
background-color: gainsboro;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
background-image: linear-gradient(to bottom, grey 0%,dimgrey 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}
.grey .action-bar .coloredbutton:hover {
background-color: darkgrey;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
background-image: linear-gradient(to bottom, gainsboro 0%, dimgrey 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}
.grey .pagination li.active span {
background: dimgrey;
border-color: whitesmoke;
}
.grey .pagination li a:hover {
background: dimgrey;
border-color: whitesmoke;
}
Code: Select all
.headerbar {
background-color: grey;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
background-image: linear-gradient(to bottom, grey 0%, dimgrey 100%);
}
.forabg, .forumbg {
background-color: gainsboro;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 35px, black 100%);
background-image: linear-gradient(to bottom, grey 0%, dimgrey 35px, black 100%);
}
.pollbar5 { background-color: #a76504; }
.action-bar .coloredbutton {
border-color: black;
background-color: gainsboro;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
background-image: linear-gradient(to bottom, grey 0%,dimgrey 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}
.action-bar .coloredbutton:hover {
background-color: darkgrey;
background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
background-image: linear-gradient(to bottom, gainsboro 0%, dimgrey 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}
.pagination li.active span {
background: dimgrey;
border-color: whitesmoke;
}
.pagination li a:hover {
background: dimgrey;
border-color: whitesmoke;
}
.navbar { background-color: grey }
.row-item {
background-color: silver;
color: black;
border-color: dimgrey;
}
.page-body { background-color: #cccccc; }
.bodycontainer { background-color: #cccccc; }
#recent-topics a.forum-link { color: slategrey; }
li.row dl { border-color: dimgrey; }
ul.topiclist dd { border-left-color: dimgrey; }
li { border-color: dimgrey; }
.forumbg .header a, .forabg .header a, th a { color: #333; }
li.header dt, li.header dd { color: #333; }
.post.online, #viewprofile .online { background-color: silver; }
ul.topiclist li.row dl { margin: 1px 1px }
you can find all these elements scattered throughout the css files , mostly in the "colours.css", and copy them in to your new created section in colours.css, prefix them with ".grey " and they generally will update with a ctrl+F5. Any element not there already can be added there, so long as the name matches and you add the ".grey" class in front it will be overwritten by your newly chosen values.
ETA :
I'm not 100% sure the files in the custom folder are necessary, but I create them there as well, because although they don't seem to be getting read from, they're a good "backup" of sorts, like if you mess with a bunch of elements all at once and don't know what has messed up your screen you can always just copy the "sane defaults" back from your grey.css and then prefix each element with ".grey"