WebSite X5Help Center

 
Francesco R.
Francesco R.
User

Oggetto dinamico  it

Author: Francesco R.
Visited 1021, Followers 2, Shared 0  

buonasera ho questo sito https://www.associazione-adacmrc.it con degli oggetti dinamici. il problema e' che nella visualizzazione da smartphone il testo non si centra. soluzioni? il codice inserito dentro l oggetto dinamico e' il seguente

<h1 align="center">COMUNICAZIONI SOCI </h1>
<div align="center"><marquee onmouseover="this.stop()" onmouseout="this.start()" loop="-1" scrollamount="1" scrolldelay="20" direction="up" align="center" width="700" height="200">
L' Associazione Dipendenti Area Città Metropolitana di Reggio Calabria<br> e' lieta di presentare il nuovo sito web.
</marquee></div>

Posted on the
5 ANSWERS - 1 USEFUL - 1 CORRECT
Incomedia
Riccardo P.
Incomedia

Buongiorno Francesco,

una volta che il sito è online, prova a inserire solo il testo nell'oggetto Dinamico e usare la barra degli strumenti già predisposta per formattare il testo e centrarlo.

Fammi Sapere.

Read more
Posted on the from Riccardo P.
Francesco R.
Francesco R.
User
Author

non posso purtroppo devo usare html perche mi serve testo scorrevole

Read more
Posted on the from Francesco R.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator
Best User of the month FRBest User of the month PL
Francesco R.
non posso purtroppo devo usare html perche mi serve testo scorrevole

... prova ad incollare uno di questi due miei codici:

Marquee - deprecato!
<div "id="marqueeK" style="overflow: hidden; height:70px"> <marquee onmouseover="this.stop()" onmouseout="this.start()" loop="-1" scrollamount="1" scrolldelay="20" direction="up" height="70" style="text-align:center;"> L' Associazione Dipendenti Area Città <br>Metropolitana di Reggio Calabria<br> e' lieta di presentare <br>il nuovo sito web.</marquee></div>
Marquee - CSS
<style> #marqueeK {overflow: hidden; height:40px } .marqueeK {position: relative;animation: slider 15s linear infinite; list-style-type: none; text-align: center;}.marqueeK:hover {animation-play-state: paused;} @keyframes slider {0% { top: 35px } 100% { top: -50px } }</style> <div id="marqueeK"> <span class="marqueeK"> L' Associazione Dipendenti Area Città <br>Metropolitana di Reggio Calabria<br> e' lieta di presentare <br>il nuovo sito web. </span> </div>

.

Read more
Posted on the from  ‪ KolAsim ‪ ‪
Francesco R.
Francesco R.
User
Author

grazie funziona

Read more
Posted on the from Francesco R.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator
Best User of the month FRBest User of the month PL

... ho visto, OK,  ... hai preferito il 1° marquee...

.

Read more
Posted on the from  ‪ KolAsim ‪ ‪