Hi @suncat18,
any example of what you mean? thanks
Something like the one in the example
https://extendthemes.com/scrolling-text/
I tried the following in the custom CSS but it is not working.
.menu-header::after{
font-size: 3em;
color: red;
position: absolute:
content: “My scrolling text here”;
}
-
This reply was modified 7 years, 7 months ago by
suncat18.
Through the CSS cannot be defined the HTML output of the scrolling text. You need to modify the theme, best to use a child theme
I am using a child theme
I added the css in the Custom CSS in the Theme Options. Do I need to add this in the style.css in the child theme?
It would be much easier to add the marquee tag like this in html. But not sure
<marquee style=”font-size: 20px; color: red;”> My scrolling text </marquee>
-
This reply was modified 7 years, 7 months ago by
suncat18.
I added the marquee tag in the header file and it is working now. Thanks Romik84 for taking the time to respond.