• Resolved vzard1

    (@vzard1)


    Hey So i added these css codes `.bwp-single-product .row { justify-content: center; }
    .topbar-right {
    display: flex;
    flex-direction: row;
    justify-content: right;
    }

    .topbar-right > ul { order: 2 }
    .topbar-right > div { order: 1 }
    #alg_currency_select {
    cursor: pointer;
    padding: 0;
    line-height: 1em;
    margin-right: 12px;
    }
    #alg_currency_select {
    cursor: pointer;
    padding: 0;
    line-height: 1em;
    margin-right: 12px;
    color: #868686
    }`
    to get my currency switcher to get customized in topbar menu but it disappeared the dropdown icon and i wanted to change the name of the currency https://snipboard.io/fB19hZ.jpg as its to big to just USD which for this case i cant find the orignal file to change the name and i dont have the support from the website developer which expired a week ago

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator bcworkz

    (@bcworkz)

    The icon is visible when I checked. If you’re not seeing it, you might have stale CSS code in your browser cache. Try clearing it.

    As for changing the option text, that could be coming from any number of places. Your theme or any of your plugins could be responsible. You could use grep or a similar command line full text search utility that has recursive search capability. If you don’t have terminal access to your site, you may need to download (via FTP) the themes and plugins folders to your local computer and run the search locally.

    That’s assuming the text is hardcoded. I only assumed so because you mentioned “file”. As a menu item, the text could stored in your DB. In that case, use the phpMyAdmin app to search the wp_posts table for the text in post content. Or search the meta_value column in wp_postmeta. If it’s found as plain text in the DB, you can edit it directly, but if it’s within a serialized array don’t change it directly unless you’re very familiar with serialized formatting. You cannot simply alter the string, its length needs to be updated as well. If it’s serialized, there’s likely a way to alter it somewhere in the admin UI.

    Thread Starter vzard1

    (@vzard1)

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Currency Switcher CSS Help’ is closed to new replies.