The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Changing the page-title red problem

3 posters

Go down

Solved Changing the page-title red problem

Post by Dollymixture March 20th 2017, 12:47 am

Hi, I am attempting to learn Javascript to help myself modify my forum. I have set myself what I consider to be a basic first task to see if I understand correctly. My basic task is to change all items of class="page-title" to the colour red. I tried the code below and it only worked for the "edit signature" tab on the signature page of the Profile. There are other occurrences of "page-title" on the other profile tabs before and after but only the signature page title is red. I looked at the value of y and it returns 1, so why is it not returning more than 1 when there are more occurrences of "page-title"?  My Javascript is installed all pages.

Thankyou for any help you can give. 

$(function() {

var x = document.getElementsByClassName("page-title");
var y=x.length;

var i;
for (i=0; i<y; i++) {
x[i].style.color="red";
}
});


Last edited by Dollymixture on March 25th 2017, 4:24 am; edited 1 time in total
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Ange Tuteur March 20th 2017, 1:48 am

Hey,

Your script is quite fine from what I can tell. It could be that there aren't enough occurrences of the specified element on the page, OR your style property is being overridden by a higher priority CSS rule. I'd try inspecting the titles you're trying to change with the devtools, to see if their class matches or if their style property is being overridden. Right click > Inspect
Changing the page-title red problem Captur16
If your style property is crossed out, it means it has been overridden by another rule.
If your style property wasn't applied, then I'd take a closer look at the element's selectors and add them to the script.

It didn't apply on the title on my forum, since the class it has is ".title" instead. If that's the case for your forum, you can use querySelectorAll. My resulting script would be :
Code:
$(function() {

  for (var x = document.querySelectorAll(".page-title, .title"), i = 0, y = x.length; i < y; i++) {
    x[i].style.color = "red";
  }

});

P.S.
You can define your variables directly in the for loop's first statement and chain them with a comma as well, so you don't have to keep writing var. thumright
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Dollymixture March 20th 2017, 2:12 am

Thankyou very much Ange, Very Happy there's a lot to check out there. I will get back much later today when I've had a look.
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Dollymixture March 20th 2017, 3:18 pm

Hi, I've had a look at the right hand side on my dev tools and loads of style properties are crossed out! This is probably what's stopping it. Is it possible to find out where these are overridden?  
Thanks.
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Ange Tuteur March 21st 2017, 1:44 am

Basically all you need to do are look for the rules that aren't crossed out. For example, a:hover overrides a:link's properties.
Changing the page-title red problem Captur17

You can also try making your style property important, to override every other rule, but that'll require the use of setAttribute.
Code:
$(function() {
 
  for (var x = document.querySelectorAll(".page-title, .title"), i = 0, y = x.length; i < y; i++) {
    x[i].setAttribute('style', 'color:red !important;');
  }
 
});
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Dollymixture March 21st 2017, 2:23 am

Hi Ange,
Thankyou. I'll try that out. Smile
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Dollymixture March 21st 2017, 3:18 am

After trying various things I still only get the "Edit signature" on the Signature Profile page to go red. The other profile tab pages do not change their header colour. So... 
I thought I'd try something really simple. I created a new function and the only code within it is 

alert("Hello world");

This I assumed should pop up every time I choose a tab on the Profile. However, just like my other function only the signature page of the Profile takes any notice, and displays the "Hello world" message. I have specified the function for all pages so surely it should pop up on all. I am mystified by this.
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Ange Tuteur March 21st 2017, 5:30 pm

Hmm.. it sounds like you might have a JavaScript error on your forum, which is halting your other scripts. Do you have any other scripts installed ? If so, try disabling those scripts while leaving the one you're testing installed.

Also, you can check for errors on page by viewing the Console tab in the devtools.
Right click > Inspect > Console tab

JavaScript errors typically look like this ; A red background w/information relating to the error ( "docment" is not defined ), and a link to the file the error occurred in.
Changing the page-title red problem Captur18

Clicking the link will take you directly to where the error occurred. Reading everything on one line isn't ideal though, so click the braces "{}" in the bottom left of the gutter to prettify the code.
Changing the page-title red problem Captur19

Doing so makes things 1000 times easier to read and debug, which allows me to determine the origin of the error was simply a typo of "document" in this example.
Changing the page-title red problem Captur20
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Dollymixture March 21st 2017, 6:07 pm

Thankyou once again for all the advice Ange, I will check that all out.
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Dollymixture March 25th 2017, 4:14 am

I'm back after a lot of learning! I removed my CSS code and looked at achieving the same thing with script.

I have now not only achieved the page title colour change (which was a simple learning test) but have managed to achieve my actual goal of hiding various options on the profile tab pages as well. So everything works!
Just for completeness, it's very similar to what Ange provided, but this is what I did to turn the first title on each profile page red. To change all the page-titles on a page red would need x[i] to be used in a loop of i from 0 to x.length.

Code:
var x;
x=document.getElementsByClassName(’page-title');
x[0].style.color="red";

So, thanks for the advice and code examples, Ange, it really helped me understand what was going on. Cheers.  Very Happy
Dollymixture
Dollymixture
Forumember

Posts : 36
Reputation : 1
Language : English

http://Www.40plusdiscoclub.forumotion.co.uk

Back to top Go down

Solved Re: Changing the page-title red problem

Post by Ape March 25th 2017, 6:01 pm

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


Changing the page-title red problem Left1212Changing the page-title red problem Center11Changing the page-title red problem Right112
Changing the page-title red problem Ape_b110
Changing the page-title red problem Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19075
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

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