Skip to content
Advertisement

Is There Any Reason Why These IDs are not working in my PHP file?

I’m trying to do an animation of the logo in my PHP website. I need to break the two words of the logo into separate spans. I wanted to get rid of the whitespace between the two span tags so I started looking for an answer…and found a problem. Basically, when I add an ID to each span tag, even if I replicate the styling for both IDs, or I add a new text color, it doesn’t work. It’s almost like the IDs do not work. The span tags are inside of an tag with an ID that does have the correct formatting, which I did try erasing and even then it doesn’t work. The only way to make it work, is to duplicate the ID and that is a bad practice. I’m attaching a jsfiddle and where everything works, but on my file it doesn’t.

EDIT

The only reason why I’m duplicating an ID is because it is the only way to style that text. It doesn’t matter if I use a new class or two new IDs, they just don’t work. It’s as if they do not exist in the code. I think the a tag’s ID is taking prominence over the new span IDs, but even if I remove it, it doesn’t work.

I edited to include the new tags that do not reflect the changes. #unexpected and #friends have the styling color: blue; and it just doesn’t show on the browser.

JavaScript
JavaScript

https://jsfiddle.net/HailToTheV612/4qbeh216/6/

The first image is of the code not working in the php file.

the code not working on the php file

The second image is the code working if I duplicate the a tag’s #navbarBrand ID styling: formatting working only if I duplicate the  tag ID

Advertisement

Answer

I edited to include the new tags that do not reflect the changes. #unexpected and #friends have the styling color: blue; and it just doesn’t show on the browser.

It looks like your code is working on your posted snippet (i.e., the #unexpected and #friends styling). The reason why it could not be showing on your browser is that, the browser is fetching the cached old CSS files. To refresh the cache, simply use ctrl+F5 or use an incognito browser. In addition, check if you’ve included the CSS file in your project.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement