• Im new to css looked a few things up but couldn’t find a solution for this one.
    i’d like to have the images/items next to each other, with the small adjustment inline-tabe how?

    can anyone help me?

    Here is the link to my site-https://thebitcoinminingoutlet.com/?page_id=71

    I been doing trial and error for a few hours now, and about to give up on wordpress.
    THanks, All

Viewing 5 replies - 1 through 5 (of 5 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section of the dashboard named, “Custom CSS” or “Edit CSS”?

    Thread Starter mricchio

    (@mricchio)

    nope

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Install this Custom CSS Manager plugin and use its section of the dashboard to hold this code:

    ul.products li.product {
     width: 100%;
    }
    
    ul.products {
     width: 235px;
     float: left;
    }

    For further support please contact your theme’s vendors.

    Thread Starter mricchio

    (@mricchio)

    Thanks Andrew, the items are now horizontal but the images are really small and the text is super huge

    -https://thebitcoinminingoutlet.com/?page_id=71

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    It’s to do with the way your theme pulls in the Custom CSS Manager plugin. The plugin doesn’t override your stylesheets like it should.
    Talk to your theme’s vendors about this because they probably have a different method to add CSS.

    Something really bad you could do to get around it is add !important on the end of your styles.

    For example, do this:

    ul.products li.product {
     width: 100% !important;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Display images horizontal’ is closed to new replies.