Viewing 7 replies - 1 through 7 (of 7 total)
  • It looks like it’s actually a background image, not a list-style.
    Try adding this to your styles:

    .irw-slider li {
    	background-image: none;
    }
    Thread Starter rairose

    (@rairose)

    Ahhh!!! Thank you SO much, Dustin! You’re wonderful ?? This infuriating problem has been plaguing my coding life for weeks. And you’ve solved it. Thank you!! I really appreciate it ??

    Thread Starter rairose

    (@rairose)

    Would you be willing to help me with one other problem?

    I have WooCommerce installed on the same site. It’s wonderful and I’m happy with the functionality of it. However, the appearance is another matter. I’ve tried to reach out to the developers of WooCommerce but have had no response.

    This is my problem page: https://www.guntoolsystems.com/shop/

    It’s displaying like a simple vertical list of products, but it should be appearing like this: https://www.woothemes.com/woocommerce/

    Any suggestions, my coding hero??

    Thank you and you’re welcome!

    I think you need to add body_class() to your body tag. More info can be found here. It looks like Woocommerce might be dynamically adding the .woocommerce-page class to the body tag. Add the body_tag() function to your body tag like so and magic might happen:

    <body <?php body_class(); ?>>

    Thread Starter rairose

    (@rairose)

    To which page should I add this body tag?

    I’ve deleted that very long list of files/pages – it’s not relevant. The body tag is in the header.php file – and it shows up on every page of any website – it’s a basic, required HTML element – see:

    https://www.w3schools.com/tags/tag_body.asp

    See the link above for info on the WP body_class()

    It looks like the theme you are using is very outdated and no longer supported or maintained – you really might want to consider using a more current theme.

    Thread Starter rairose

    (@rairose)

    Ok, I take it back. I figured out where to add it. But now there is a problem with the sidebar. When you go to this page: https://www.guntoolsystems.com/shop/ or any of the product pages, the sidebar appears down at the bottom of the page instead of on the right side. How do I fix THAT now?

    (Sorry for all the posts)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘CSS Problem with Widget’ is closed to new replies.