Unfortunately, he can’t (it isn’t supported by Discourse). I’ll try to get to it tomorrow. In the meantime, we may be able to figure it out using our version here. The classnames should be the same…
I think you need to change
button.btn.btn-primary {
color: #000;
}
to
.btn-primary {
color: #000;
}
Actually you may need to add the following:
body .bootbox.modal .modal-footer a.btn-primary {
color: #000;
}
body .bootbox.modal .modal-footer a.btn-primary:hover {
color: #FFF;
}
yep it worked! thanks alot! and yeah the class names should be exactly the same
but now i wnt to change the text box part (the bit which you text in) but the class names:
div.wmd-button-row
div.wmd-button-bar
dont seem to work. Any ideas?
btw i want to change the color of the bar at the top
Can you take a screenshot of the “bar” you are referring to?
It says i cant upload attachments as im a new user
but its the one with all the icons on above where you write your comments
Okay, it looks like the following should work:
#wmd-button-bar { background-color: #FF0000; }
If that doesn’t work, you may need to add !important
#wmd-button-bar { background-color: #FF0000 !important; }
thanks you so much it worked again! How do you know all this stuff? Also one more thing (you might have to check on my website) on my website there are some footer that i put a white transparent background on (check my code up above) but on the sections that it dosn’t need the background, it stills hows up there, probably because i set the code to footer, but i can’t seem to find each individual one on its own. can you help? @cpradio
Years of experience
Lots of tinkering, and sites that help me find what I’m looking to achieve ![]()
Are you referring to the empty footer on the Categories Listing page? But it actually has content when you are on a specific category (topic listing).
yeah im wondering how to fix this
I’m going to call in @orodio, who has more knowledge than I (as I don’t know an easy solution for this).
Website: http://fantasia.org.uk/
Here are the screenshots:
Category Listing:
Category Topic Listing:
Do you know of a way using CSS (maybe we have to amend some JavaScript?) to hide the footer on the Category Listing view?
yeah but its not just there it reapeats everywhere where i have a transparent background eg. sub categories and when something insn’t there eg. no sub categories, etc and its quite annoying
It’s not all that difficult to get out of the sandbox
Try the following:
.topic-list-bottom:empty { display: none; }
yup worked again! thanks. Dyou know how to do the same for the subcategories one?
Give me a URL so I can see what you are referring to, as I didn’t see anything that needed to be hidden on that page.
here ya go its next to the general tab http://fantasia.org.uk/c/uncategorized this happens when there is no sub categories
yeah both prefferably!


