You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the freedom theme has minor styling inconsistencies compared to the Omeka Classic version of the theme. The following changes align the design more closely with the Classic theme:
Header - Site Title Styling:
The site title in the header (.main-header__site-title a) should use the "Noto Serif" font-family and larger font size for a more prominent and classic appearance.
Footer - Navigation Link Wrapping:
Links in the footer navigation menu (.main-footer__col2 .navigation a) should not break in the middle of words, ensuring better readability and visual consistency.
Suggested Changes
Header: Update Site Title Styling
Modify the styles for .main-header__site-title a:
Footer: Prevent Text Wrapping in Links
Modify the styles for .main-footer__col2 .navigation a:
.main-footer__col2 .navigation a {
white-space: nowrap; // Prevents the text in links from wrapping
}
Benefits of These Changes
The site title will better match the classic theme's aesthetic, improving user experience for those transitioning between versions.
Enhanced Readability:
Preventing navigation links from breaking in the middle of words ensures a more polished and professional appearance.
The text was updated successfully, but these errors were encountered:
The current implementation of the freedom theme has minor styling inconsistencies compared to the Omeka Classic version of the theme. The following changes align the design more closely with the Classic theme:
Header - Site Title Styling:
The site title in the header (.main-header__site-title a) should use the "Noto Serif" font-family and larger font size for a more prominent and classic appearance.
Footer - Navigation Link Wrapping:
Links in the footer navigation menu (.main-footer__col2 .navigation a) should not break in the middle of words, ensuring better readability and visual consistency.
Suggested Changes
Header: Update Site Title Styling
Modify the styles for .main-header__site-title a:
Footer: Prevent Text Wrapping in Links
Modify the styles for .main-footer__col2 .navigation a:
Benefits of These Changes
The site title will better match the classic theme's aesthetic, improving user experience for those transitioning between versions.
Enhanced Readability:
Preventing navigation links from breaking in the middle of words ensures a more polished and professional appearance.
The text was updated successfully, but these errors were encountered: