diff --git a/epicyon-profile.css b/epicyon-profile.css index c34a87840..10ca6f8fe 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -1645,6 +1645,9 @@ div.container { padding: 10px; margin: 20px 60px; } + .columnIcons img { + float: right; + } } @media screen and (min-width: 2200px) { @@ -2290,4 +2293,7 @@ div.container { padding: 10px; margin: 40px 80px; } + .columnIcons img { + float: right; + } } diff --git a/webinterface.py b/webinterface.py index b67ff778f..6a17e3f37 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5665,7 +5665,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, rssAtBottom = not rssIconAtTop or not showHeaderImage if linksFileContainsEntries and rssAtBottom: - htmlStr += '
' + rssIconStr + htmlStr += '
' + rssIconStr + '
' return htmlStr @@ -5883,7 +5883,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, rssAtBottom = not rssIconAtTop or not showHeaderImage if newswireContentStr and rssAtBottom: - htmlStr += '
' + rssIconStr + htmlStr += '
' + rssIconStr + '
' return htmlStr