Where exactly on the page is the list?
what html code is used to build the list?
<h3 style=”text-align: justify;”>Ecco qui una lista dei sintomi più comuni:</h3>
<h3 style=”text-align: justify;”></h3>
<ul style=”text-align: justify;”>
-
<h3>muscoli tesi, soprattutto in concomitanza di spalle, collo e lombari;</h3>
-
<h3>palpitazioni e tachicardia, difficoltà di tanto in tanto a respirare;</h3>
-
<h3>fitte o pesantezza del capo, soprattutto quando ci si ferma e la giornata sta per finire;</h3>
-
<h3>sensazione continua di debolezza fisica;</h3>
-
<h3>difficoltà a digerire, stipsi o diarrea; irregolarità intestinale;</h3>
-
<h3>capogiri frequenti;</h3>
-
<h3>difficoltà ad addormentarsi o sonno disturbato;</h3>
-
<h3>perdita dell’appetito (“ho lo stomaco chiuso”) o fame nervosa;</h3>
-
<h3>insofferenza nei confronti delle persone accanto;</h3>
-
<h3>stati d’ansia;</h3>
-
<h3>facilità ad allarmarsi per un nonnulla;</h3>
-
<h3>sconvolgersi facilmente, tristezza senza motivi apparenti;</h3>
-
<h3>scatti di rabbia;</h3>
-
<h3>umore altalenante;</h3>
-
<h3>abuso di alcol;</h3>
-
<h3>tendenza a criticare;</h3>
I can only assume you’re talking about the list in the content. Looks like the CSS for UL elements in content data will need to be updated. Look at style.css line 272
If it’s the indentation you’ll need to up the margin on the left, right now it’s set to: margin: 0 0 20px; You’ll need to add another 20px declaration like so: margin: 0 0 20px 20px;
This does, however affect your navigation as well, so you’ll need to target lists ONLY in content.
For the love of god please put that code in a code block… you just broke the forum! lol
<ul style="text-align: justify;">
that builds an unordered list.
If you want an orderedd list, you use <ol….>,,,