Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #292646

    Hi

    is it possible to change the cart icon size (Woocommerce boxed, right corner), the backgrund color and the specific icon?

    I found some CSS here in the forum, but it dosent help to modify

    #header_main > ul > li > a.cart_dropdown_link span {
    font-size: 20px;
    }

    Can you help me here ?

    #292685

    Hey Jonas!

    Try adding this code to the Quick CSS:

    .cart_dropdown_link span {
        font-size: 32px;
    }
    .cart_dropdown_link{
        background: red !important;
        color: white !important;
    }
    .cart_dropdown {
        overflow: hidden;
    }

    Change as needed.

    Cheers! 
    Josue

    #292901

    Well, we are very close.

    What about the size of the field with the cart icon in. I guess its around 32 x 32 now. Simply too small.

    #292921

    Hey!

    Please add following code to Quick CSS as well

    .cart_dropdown { height: 60px; width: 60px; }
    .cart_dropdown_first .cart_dropdown_link { line-height: 56px; }

    Cheers!
    Yigit

    #292961

    Hmm it interfers with the cart, when something is In it, but before I ad, its stille kind of small (only the hight is changed)

    #293257

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    #293315

    Can screendumps do? The site is on ready to go online.

    Empty

    After product ad

    #293357

    We’d need to see the site live in order to debug a CSS issue, reply back to this topic once you go live.

    P. S. You can use a plugin like this to protect the website from visitors while its being developed.

    Best regards,
    Josue

    #295934

    What I aim for is to get a new image and a bigger square.

    A jpg image like the shopping bag in this url.

    http://realityworld.dk/butik/

    This version have the following ekstra CSS:

    .cart_dropdown_link span {
    font-size: 32px;
    }
    .cart_dropdown_link{
    background: #A69171 !important;
    color: white !important;
    }

    .cart_dropdown { height: 400px; width: 100px; }
    .cart_dropdown_first .cart_dropdown_link { line-height: 396px; }

    .cart_dropdown {
    overflow: hidden;
    }

    #296068

    Hi!

    Try adding this:

    .cart_dropdown_link span:before {
        content: url(_CART_IMAGE_URL_HERE_);
    }
    

    Cheers!
    Josue

    #296140

    Like this?

    .cart_dropdown_link span:before {
    content: url(http://realityworld.dk/wp-content/uploads/2014/07/bag2.jpg);
    }

    Dosent seem to work ether with or without the other CSS

    #296142

    Hi!

    The code does work, here’s how it should look after applied.

    Don’t forget to purge any caching/minification functionality you may have activated.

    Cheers!
    Josue

    #296214

    Thought I tried that to, but well like always you are right.

    Thank you sooo much, and again excellent from Mr Burns.

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Cart size’ is closed to new replies.