MyBB Community Forums

Full Version: Flatty Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
(2017-02-10, 01:19 PM)RocketFoot Wrote: [ -> ]I am converting a copy of Flatty to a dark theme but I have run into a snag with the Page Manager plugin...where is it pulling text color from within the Flatty CSS?  I need to lighten the text so you can read it better.




Check it out live:

test_user
test123

Change Theme to: Dark Stang

Click link in announcement banner:
https://www.7173mustangs.com/misc.php?page=raffle

There is no theme selector Toungue
Ok, next task...how can I make the forum icons show a different color when there are new posts?  See screen cap below (top icon has new posts, bottom does not.  They are different but just barely.  I want to change forums with new posts to green.)

[attachment=38351]
(2017-02-10, 02:03 PM)RocketFoot Wrote: [ -> ]Ok, next task...how can I make the forum icons show a different color when there are new posts?  See screen cap below (top icon has new posts, bottom does not.  They are different but just barely.  I want to change forums with new posts to green.)

Anyone know how to change Font Awesome Forum Icon Colors for new posts On/Off?
https://gyazo.com/608bcdf0a43652dc3362859c78a9dc44

Hey man, I'd like to edit the Buttons in the lower bracket thing, namely the 'Open Buddy list' and 'View New posts', in which template are these located, can't seem to find them
(2017-02-13, 03:48 PM)RocketFoot Wrote: [ -> ]Anyone know how to change Font Awesome Forum Icon Colors for new posts On/Off?

Edit the color of forum_status i and forum_off i in global.css
[attachment=38398]

(2017-02-15, 06:33 PM)Vis4w Wrote: [ -> ]https://gyazo.com/608bcdf0a43652dc3362859c78a9dc44

Hey man, I'd like to edit the Buttons in the lower bracket thing, namely the 'Open Buddy list' and 'View New posts', in which template are these located, can't seem to find them

You have to edit the Flatty templates header_welcomeblock_guest and header_welcomeblock_member

What you're looking for is in:
<div class="lower">....
Thanks man, I love you <3
(2017-02-15, 07:48 PM)SvePu Wrote: [ -> ]
(2017-02-13, 03:48 PM)RocketFoot Wrote: [ -> ]Anyone know how to change Font Awesome Forum Icon Colors for new posts On/Off?

Edit the color of forum_status i and forum_off i in global.css
Still having some issues...when I change those settings, nothing happens on the forum!

Here is my actual code:

.forum_status {
	cursor: default;
	font-size: 30px;
	padding-left: 13px; 
	text-align: center;
}

.forum_status i {
	display: inline-block;
	line-height: 50px;
	color: #8fa8f6;
}

.forum_on {
 color: #0094d1;
}

.forum_off, .forum_offlock, .forum_offlink {
 color: #333;
}

.forum_off i {
 opacity: .7;
}

.forum_offlock i:before {
 content: "\f023"; color: #ef7351;
}

.forum_offlink i:before {
 content: "\f0c1"; color: #44ce9d;
}

I just want to change forums with new posts to light green color!
(2017-02-13, 03:48 PM)RocketFoot Wrote: [ -> ]I just want to change forums with new posts to light green color!

Try this:
.forum_status {
 cursor: default;
 font-size: 30px;
 padding-left: 13px; 
 text-align: center;
}

.forum_status i {
 display: inline-block;
 line-height: 50px;
 color: #17ff03;
}

.forum_on {
 color: #0094d1;
}

.forum_off, .forum_offlock, .forum_offlink {
 color: #333;
}

.forum_off i {
 color: rgba(143, 168, 246, 0.5);
}

.forum_offlock i:before {
 content: "\f023"; color: #ef7351;
}

.forum_offlink i:before {
 content: "\f0c1"; color: #44ce9d;
}


[attachment=38404]
That works better!  It was the opacity in my code that was messing changes up!

Thanks again!!
For some reason I can't delete/close/or remove threads. And than it gives me this message

"Sorry, but you did not select any threads to perform inline moderation on, or your previous moderation session has expired (Automatically after 1 hour of inactivity). Please select some threads and try again."

How can I fix this issue???
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24