Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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 Sizes

    I 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
    11px

    Text 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, video

    Style Location
    https://gatehealing.com/wp-content/themes/enfold/css/base.css?ver=5.6.6
    ———————————————–
    2) Font Size
    11px

    Text Block
    .pagination span, .pagination a

    Style Location
    https://gatehealing.com/wp-content/themes/enfold/css/layout.css?ver=5.6.6
    ———————————————–
    3) Font Size
    11px

    Text Block
    .pagination .current

    Style 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
    Search

    CSS Selector
    nav.main_menu > div.avia-menu > ul#avia-menu > li#menu-item-search

    HTML Block
    <li id=”menu-item-search” class=”noMobile menu-item menu-item-search-dropdown menu-item-avia-special” role=”menuitem”>
    ———————————————–
    2) Element Label
    EVERYDAY LIFE

    CSS Selector
    div.slide-content > header.entry-content-header > span.blog-categories > a

    HTML Block

    ———————————————–
    3) Element Label
    FAMILY AND PARENTING

    CSS Selector
    div.slide-content > header.entry-content-header > span.blog-categories > a

    HTML Block

    ———————————————–
    4) Element Label
    EVERYDAY LIFE

    CSS Selector
    div.slide-content > header.entry-content-header > span.blog-categories > a

    HTML Block

    ———————————————–
    5) Element Label
    FAMILY AND PARENTING

    CSS Selector
    div.slide-content > header.entry-content-header > span.blog-categories > a

    HTML Block

    —–_____——______—–_____——_____——_____—–______—–_____

    • This topic was modified 1 year, 2 months ago by gatehealing.
    #1418983

    Hey 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,
    Ismael

    #1418986

    How 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?

    #1418988

    Hi,

    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,
    Ismael

    #1419095

    HI,

    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

    #1419122

    Hi,

    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,
    Ismael

    #1419126

    Thanks!
    Jon

    #1419127

    Hi,

    No problem. Glad we could be of help. Please do not hesitate to open another thread when you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘usability issue with font sizes’ is closed to new replies.