.jpg)
1:Simple moving text without background
If anybody want to move or scroll the text/sentence in blogger website from right to left as shown in above then use this below code. This code will have to copy and paste it in to your blogger website theme or layout or add this code wherever you want to move desired text. Moving text is known as marquee in HTML language. Moving text can be sentence or paragraph which moves from right to left.
Change below code according to your requirement-
scrollamount="6"
color: black;
font-family: system-ui;
font-size: 22px;
If anybody want to move text/paragraph with background as shown as above then use below code and paste this code in to blogger theme or layout wherever you want to scroll the text. In this code you can change the background color and moving text color easily and also moving text speed. This code have some additional feature like when mouse over the moving text, it will stop.
Code for simple moving text:
2: Moving text with background without link
If anybody want to move text/paragraph with background as shown as above then use below code and paste this code in to blogger theme or layout wherever you want to scroll the text. In this code you can change the background color and moving text color easily and also moving text speed. This code have some additional feature like when mouse over the moving text, it will stop.
Change below code according to your requirement-
bgcolor="#efefef"
direction="left"
scrollamount="6"
font-size: 22px;
padding: 1px;
border: 1px solid #ccc;"
color: black;
If you are want to move text from right to left on your blogger website with background and also link, stop when mouse over the text and when click the link it will open in new tab as shown above example, then use below code. You can easily change moving text speed by changing value "7" in given code scrollamount="7".
Code for moving text with background without link:
3: Moving text with background with link
If you are want to move text from right to left on your blogger website with background and also link, stop when mouse over the text and when click the link it will open in new tab as shown above example, then use below code. You can easily change moving text speed by changing value "7" in given code scrollamount="7".
Change below code according to your requirement-
a href="ADD URL"
Code for moving text with background with link:
Note: You can take any HTML color code from RGBA Color Picker
Note: If You are want to know more about How to add moving text in HTML?