Home > Article > CMS Tutorial > How to remove the text and title at the top of the dedecms slideshow
How to remove the text and title at the top of the dedecms slide?
Recommended learning: 梦Weavercms
First let’s take a look at the slide code of dedecms5.7 SP1
—————— ——————————Change the text position in this paragraph————————————————
//Text color|Text position|Text background color |Text background transparency|Button text color|Button default color|Button current color|Auto play time|Picture transition effect|Whether to display the button|Opening method
var configtg='0xffffff|0|0x3FA61F|5|0xffffff|0xC5DDBC|0x000033|2|3|1|_blank';
———————————— ————After the change————————————————————
var configtg='0xffffff||0x3FA61F|5|0xffffff|0xC5DDBC|0x000033|2|3|1|_blank';
At this time, the background color at the top of the slide is transparent!
Let’s remove the text at the top!
Method: Just remove this code:
textarr[[field:global.autoindex/]] = "[field:title function='html2text(@me)'/]";
——————————————————-Slideshow source code———— ————-
The above is the detailed content of How to remove the text and title at the top of the dedecms slideshow. For more information, please follow other related articles on the PHP Chinese website!