Jan4Jam
Junior Member
Mental Health Wellness Blog / Jan
Posts: 492
inherit
mcavoyjan@aol.com
236167
0
Jul 2, 2024 5:37:13 GMT -8
Jan4Jam
Mental Health Wellness Blog / Jan
492
August 2016
jan4jam
|
Post by Jan4Jam on May 23, 2017 0:48:39 GMT -8
Good morning,
I need some assistance with the Participated Button in the Menu Bar not the one to the top right small one the Navigation Menu I am trying to change the color of the Threads and it is not working may you please tell me how to do this. It is only changing the Participated on the Right small button at the Top but not the "Participated Threads in the Navigation Menu?"
I also need help changing the Font color in the "latest replies" to the right of the topic thread, hope I am wording this right?
And also the Color for the created "by" the name of the person who posted?
I went into the Admin / Themes / CSS / and Style Sheet? Thank you, Jan
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on May 26, 2017 11:18:37 GMT -8
The participated one is a little more tricky if you want to use just CSS because it doesn't have an id / class to get direct access to it. So you need to use attribute selectors.
Example:
#navigation-menu li a[href*=participated] {
color: red;
}
You can also ignore the CSS route and modify it directly in your Forum Wrapper template. There is a foreach loop that iterates over the navigation list which would allow you to do a comparison for the item you want to style.
As for the other parts that you want to style. Right click on the element and click "Inspect Element" so you can find out the class / id for that element or parent. Then it's just a matter of creating a rule and putting it in your stylesheet.
|
|
Jan4Jam
Junior Member
Mental Health Wellness Blog / Jan
Posts: 492
inherit
mcavoyjan@aol.com
236167
0
Jul 2, 2024 5:37:13 GMT -8
Jan4Jam
Mental Health Wellness Blog / Jan
492
August 2016
jan4jam
|
Post by Jan4Jam on May 27, 2017 1:43:44 GMT -8
The participated one is a little more tricky if you want to use just CSS because it doesn't have an id / class to get direct access to it. So you need to use attribute selectors. Example: #navigation-menu li a[href*=participated] {
color: red;
} You can also ignore the CSS route and modify it directly in your Forum Wrapper template. There is a foreach loop that iterates over the navigation list which would allow you to do a comparison for the item you want to style. As for the other parts that you want to style. Right click on the element and click "Inspect Element" so you can find out the class / id for that element or parent. Then it's just a matter of creating a rule and putting it in your stylesheet. Thank you have a great day =D May I ask I posted a new topic ticket thread to support here. Do I have the right thread to post for my question? I just want to know how to change the color of the "Last Post" to the right of the Topic Thread on the Forum Board? I did the titles of the topics on the left and the description below but for some reason I am having trouble with the Last Reply color? Thank you have a good weekend
|
|