diff --git a/css/stylesheet.css b/css/stylesheet.css index 9780fc2..76256b8 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -85,7 +85,7 @@ h1#title, h2#subtitle, #actions, #references { top: 0; } -#selection-page h3 { +#selection-page p { margin-left: 10%; margin-right: 10%; } @@ -103,7 +103,7 @@ h1#title, h2#subtitle, #actions, #references { } #selection-page #selection { - margin-bottom: 5%; + margin-bottom: 2%; } #selection-page #return { diff --git a/script/postprocess.js b/script/postprocess.js index 7b6fed0..ed316a8 100644 --- a/script/postprocess.js +++ b/script/postprocess.js @@ -66,13 +66,6 @@ window.onload = function(){ let elementH2 = document.createElement('h2'); elementH2.textContent = 'Install Feed Reader Apps For Desktop And Mobile'; elementDiv.appendChild(elementH2); - let elementH3 = document.createElement('h3'); - elementH3.textContent = '' + - 'This is a selection of desktop applications, mobile apps and online ' + - 'services for you to choose from. This selection includes news ' + - 'readers, podcast managers, torrent clients, chat bots, HTML browsers ' + - 'and plugins which support syndication feeds.'; - elementDiv.appendChild(elementH3); const brands = Object.keys(selection); let elementDivSel = document.createElement('div'); elementDivSel.id = 'selection'; @@ -89,6 +82,13 @@ window.onload = function(){ elementDivSel.appendChild(elementSpan); elementDiv.appendChild(elementDivSel); } + let elementP = document.createElement('p'); + elementP.textContent = '' + + 'This is a selection of desktop applications, mobile apps and online ' + + 'services for you to choose from. This selection includes news ' + + 'readers, podcast managers, torrent clients, chat bots, HTML browsers ' + + 'and plugins which support syndication feeds.'; + elementDiv.appendChild(elementP); let elementDivReturn = document.createElement('div'); elementDivReturn.id = 'return'; elementDivReturn.textContent = 'Return To PubSub...';