FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 22 users online :: 0 Registered, 0 Hidden and 22 Guests :: 2 Bots

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

[IN PROGRESS] Topic title in group color

View previous topic View next topic Go down

Kisskiss
Kisskiss

Gender : Unspecified
Posts : 47
Points : 2894
Reputation : 1
Language : Italian, spanish
Browser : Browser : Google Chrome Forum Version : Forum Version : punBB

PostKisskiss Wed 20 Jul 2016, 09:20

[IN PROGRESS] Topic title in group color 2016-010


Hello,


how can I paint me too the title Devli arguments based on the color the staff group?
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12014
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 20 Jul 2016, 09:52

Hi @Kisskiss,

This is a native feature of Forumactif Edge. You have two solutions to achieve this result :

1. Install Forumactif Edge :
https://github.com/SethClydesdale/forumactif-edge/wiki/Installing

2. Review the source code to figure out how it's made. This is the JavaScript :
https://github.com/SethClydesdale/forumactif-edge/blob/master/javascripts/in-the-topics/topics.js


If you don't yet know what Forumactif Edge is, then please read this page.


P.S.
I modified the title of your topic a bit to fit your question.
Kisskiss
Kisskiss

Gender : Unspecified
Posts : 47
Points : 2894
Reputation : 1
Language : Italian, spanish
Browser : Browser : Google Chrome Forum Version : Forum Version : punBB

PostKisskiss Wed 20 Jul 2016, 11:01

it's fantastic [IN PROGRESS] Topic title in group color 1f60d [IN PROGRESS] Topic title in group color 1f60d [IN PROGRESS] Topic title in group color 1f60d


thank you very much
jessy
jessy

Gender : Female
Posts : 102
Points : 3111
Reputation : 14
Language : italy
Browser : Browser : Google Chrome Forum Version : Forum Version : Invision
http://ilgiornaledibordo.forumattivo.com/

Postjessy Wed 20 Jul 2016, 11:46

you can only do the rank bar ?

[IN PROGRESS] Topic title in group color 2016-010

I do not want to change the entire board [IN PROGRESS] Topic title in group color 1f600
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12014
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 20 Jul 2016, 15:48

@jessy yes it's possible with solutions like this :
http://help.forumotion.com/t143630-staff-mods-colored-post-borders
http://help.forumotion.com/t144188-staff-post-border-color

Although it's not exactly the same as Edge.
jessy
jessy

Gender : Female
Posts : 102
Points : 3111
Reputation : 14
Language : italy
Browser : Browser : Google Chrome Forum Version : Forum Version : Invision
http://ilgiornaledibordo.forumattivo.com/

Postjessy Thu 21 Jul 2016, 15:06

no problem my friend question

work

Code:
.post { border-top: 10px solid #000!important;
  border-radius: 10px 10px 0px 0px;}
.post.admin-answer {
  border-top-color:red !important;}
.post.founder-answer {
  border-top-color:red !important;}
------------------------------------
$(function() { $('.admin-rank').closest('.post').addClass('admin-answer');});
$(function() {  $('.founder-rank').closest('.post').addClass('founder-answer');});

not work

Code:

.post.registered users-answer {
  border-top-color:yellow !important;}
.post.Friend forum-answer {
  border-top-color:LIMEGREEN !important;}
---------------------------------------
$(function() {$('.registered users-rank').closest('.post').addClass('registered users-answer');});
$(function() {  $('.Friend forum-rank').closest('.post').addClass('Friend forum-nswer');});

I don't understand why Confused grazie in anticipo

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12014
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Thu 21 Jul 2016, 16:02

Try changing your CSS to this :
Code:
.post.registered users-answer {
  border-top:10px solid yellow !important;}
.post.Friend forum-answer {
  border-top:10px solid limegreen !important;}

You need to define the size + type of the border which was initially defined by this rule :
Code:
.post { border-top: 10px solid #000!important;
  border-radius: 10px 10px 0px 0px;}
Which isn't present in your new code.
jessy
jessy

Gender : Female
Posts : 102
Points : 3111
Reputation : 14
Language : italy
Browser : Browser : Google Chrome Forum Version : Forum Version : Invision
http://ilgiornaledibordo.forumattivo.com/

Postjessy Fri 22 Jul 2016, 19:51

works but it conflicts
Code:
.post { border-top: 20px solid #000 !important;
  border-radius: 10px 10px 0px 0px;}

so not work
Code:
#post { border-top: 20px solid #000!important;
  border-radius: 10px 10px 0px 0px;}

[IN PROGRESS] Topic title in group color Captur13
Double with black background

[IN PROGRESS] Topic title in group color Bordo10

complete code

javascript:

Css:

how can i do ? Waaa
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12014
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Fri 22 Jul 2016, 20:23

Try changing this rule :
Code:
.post {border-top: 20px solid #000 !important;
border-radius: 0px 10px 10px 0px;}

into this :
Code:
div.post {border-top: 20px solid #000 !important;
border-radius: 0px 10px 10px 0px;}
That should solve the problem in your first image.


About your second image ; Do you want the yellow border gone ?
jessy
jessy

Gender : Female
Posts : 102
Points : 3111
Reputation : 14
Language : italy
Browser : Browser : Google Chrome Forum Version : Forum Version : Invision
http://ilgiornaledibordo.forumattivo.com/

Postjessy Sat 23 Jul 2016, 07:43

Ange Tuteur wrote:Try changing this rule :
Code:
.post {border-top: 20px solid #000 !important;
border-radius: 0px 10px 10px 0px;}

into this :
Code:
div.post {border-top: 20px solid #000 !important;
border-radius: 0px 10px 10px 0px;}
That should solve the problem in your first image.
yes [IN PROGRESS] Topic title in group color 1f339

[quote="Ange Tuteur"
About your second image ; Do you want the yellow border gone ?[/quote] no

https://fmdesign.forumotion.com/t720-old-bug-forumotion#14171

It makes me the edge for the entire board

Code:
border-radius: 0px 10px 10px 0px;}

how to correct [IN PROGRESS] Topic title in group color 1f618

Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum