• esander4

    (@esander4)


    I have the zenshop e-commerce theme. I’m trying to figure out how to change the two background pictures in zenshop, but I can’t figure out how. Also, the bar where the price is displayed is green by default, but I’d like it to be royal blue. How would I change this?

    SEC Gear

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter esander4

    (@esander4)

    Oh and I’d also like to add a button that links to my facebook and twitter pages, but I have the sidebar disabled so none of the plugins I can think of will work. Any suggestions?

    WPyogi

    (@wpyogi)

    The bottom background is set here:

    body {
        background: url("images/body.png") repeat scroll 0 0 transparent;
    }

    And the top — which is essentially on top of the above, is set here:

    #blouse {
        background: url("images/bl.jpg") repeat-x scroll center top transparent;
    }

    Unless there is a theme option to change them, the easiest way to do it would be to use different images — but use the same name and replace the current images in the same file location.

    The green is set here:

    .spdetails {
        background: none repeat scroll 0 0 #1E8745;
        border-radius: 0 5px 5px 0;
        color: #FFFFFF;
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        padding: 5px 10px;
    }

    Do be aware that it’s recommended that changes to your theme be made in a Child Theme or using a Custom CSS option or plug-in so that changes won’t be lost when the theme is updated.

    Also, just so you know, bumping is against the forum rules and will typically be removed by a moderator…

    Thread Starter esander4

    (@esander4)

    Whoops, didn’t know that. Thanks. How would I do the a facebook, twitter, and rss button without a sidebar?

    WPyogi

    (@wpyogi)

    No idea — you’ll have to look for plug-ins that will work elsewhere — I’ve seen some social icons in headers, so I’m guessing they exist. You might be able to modify one too if you have some coding experience or are willing to get your hands dirty!

    This changes the slider price background

    .spdetails {
    background: none repeat scroll 0 0 #1E8745;
    border-radius: 0 5px 5px 0;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    }

    But where is the code to change the store price background?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @shingu, you can ask this to your theme’s vendors.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Theme: Zenshop] Changing background and color of price bar’ is closed to new replies.