-
AuthorPosts
-
September 12, 2023 at 11:37 pm #1418953
***note: the codes below are displaying weird, so the tool I used to identify these issues is https://www.seoptimer.com/gatehealing.com#uimobile . . . go down to Usability issues and expand those sections to see the tables that outline these issues***
regarding: https://gatehealing.com/I have 2 types of usability issues:
1) 3 Font Usability issues, and
2) 5 Tap Target SizesI cannot find the css file in the Theme editor to fix these issues:
1) Summary: Legible Font Sizes (THREE issues)
There is some text on your page that is small and may not be legible enough for particular users.
We recommend reviewing all text on your page in different devices to ensure that it is of appropriate size.1) Font Size
11pxText Block
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, videoStyle Location
https://gatehealing.com/wp-content/themes/enfold/css/base.css?ver=5.6.6
———————————————–
2) Font Size
11pxText Block
.pagination span, .pagination aStyle Location
https://gatehealing.com/wp-content/themes/enfold/css/layout.css?ver=5.6.6
———————————————–
3) Font Size
11pxText Block
.pagination .currentStyle Location
https://gatehealing.com/wp-content/themes/enfold/css/layout.css?ver=5.6.6
-_—_____—–_______—–______—–_______—–______—–______
2) Summary: Tap Target Sizing (FIVE issues)
Some of the links or buttons on your page may be too small for a user to easily tap on a touchscreen.
Consider making these tap targets larger to provide a better user experience.1) Element Label
SearchCSS Selector
nav.main_menu > div.avia-menu > ul#avia-menu > li#menu-item-searchHTML Block
<li id=”menu-item-search” class=”noMobile menu-item menu-item-search-dropdown menu-item-avia-special” role=”menuitem”>
———————————————–
2) Element Label
EVERYDAY LIFECSS Selector
div.slide-content > header.entry-content-header > span.blog-categories > aHTML Block
———————————————–
3) Element Label
FAMILY AND PARENTINGCSS Selector
div.slide-content > header.entry-content-header > span.blog-categories > aHTML Block
———————————————–
4) Element Label
EVERYDAY LIFECSS Selector
div.slide-content > header.entry-content-header > span.blog-categories > aHTML Block
———————————————–
5) Element Label
FAMILY AND PARENTINGCSS Selector
div.slide-content > header.entry-content-header > span.blog-categories > aHTML Block
—–_____——______—–_____——_____——_____—–______—–_____- This topic was modified 1 year, 2 months ago by gatehealing.
September 13, 2023 at 4:32 am #1418983Hey gatehealing,
Thank you for the inquiry.
1) Summary: Legible Font Sizes (THREE issues)
1) Font Size 11px – It seems to be referring to the base or default font size for all text elements. This css rule is overridden by the custom font sizes that can be set in the Enfold > General Styling > Typography panel.
2-3) Font Size 11px .pagination span, .pagination a – You can adjust the size of the pagination with this css code.
#top .pagination .current, #top .pagination a, #top .fullsize .template-blog .pagination a { height: 50px; width: 50px; line-height: 50px; border-radius: 100px; margin-right: 5px; font-size: 1em; } #top .pagination .pagination-meta { float: right; line-height: 35px; font-size: 1em; }
2) Summary: Tap Target Sizing (FIVE issues)
1) Element Label Search – Looks like you’ve disabled the search bar in the header but if you want to adjust the size of the label, try to use this css code.
#top .av_minimal_header #s { font-size: 1.2em; }
———————————————–
2-5) Element Label span.blog-categories > a – The other 4 refers to the post categories, which can be adjusted using this css code..html_elegant-blog #top .post-entry .minor-meta { font-size: 1em; }
Best regards,
IsmaelSeptember 13, 2023 at 5:19 am #1418986How did I disable the search bar in the header? In Enfold Child > Header, I don’t see anything in any of the 3 tabs where I can turn it back on. . . would that fix the issue without additional css code?
September 13, 2023 at 5:50 am #1418988Hi,
Thank you for the update.
You can enable the search icon back in Enfold > Main Menu > General panel, toggle the Append Search Icon To Main Menu option. You can also add the search field in the header as widget. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelSeptember 13, 2023 at 11:12 pm #1419095HI,
You said, “Looks like you’ve disabled the search bar in the header but if you want to adjust the size of the label, try to use this css code.”
However, it is Enabled (ie the toggle is on) and the Top Header is enabled on General Layout > Layout Tab > Logo and Main Menu.
If you pull up my website on an iPhone, you can see that my “logo” which in this case is just my name/company is pushed a bit to the right, almost overlapping the magnifying glass icon–my ‘actual’ logo is a compass that disappears on mobile devices, but the ‘name’ part of that doesn’t move over to the left to take its place–the compass just disappears but leaves the text “Jonathan F. Anderson, LPC-S, Gate Healing, PLLC” where it is . . . I think that causes the tap target of the magnifying glass to be too small.
J
September 14, 2023 at 5:04 am #1419122Hi,
Thank you for the clarification.
The logo is pushed a bit to the right because of this css code.
.responsive #top .logo .subtext { transform: translate(2%,-50%)!important; width: 235px!important; }
Adjusting the transform/translate value should move the logo farther to the left.
.responsive #top .logo .subtext { transform: translate(-15%,-50%)!important; width: 235px!important; }
And to adjust the size of the magnifying glass, please add this css code.
.responsive #top #wrap_all .menu-item-search-dropdown>a { font-size: 42px; }
Best regards,
IsmaelSeptember 14, 2023 at 6:18 am #1419126Thanks!
JonSeptember 14, 2023 at 7:41 am #1419127 -
AuthorPosts
- The topic ‘usability issue with font sizes’ is closed to new replies.