Home Forums Support Shadows

Viewing 15 posts - 1 through 15 (of 28 total)
  • Author
    Posts
  • #13867
    Ross Robson

    how can i add a slight shadow behind the content/widget areas so it doesnt look too flat?

    Thnks

    #13937
    Tom
    Lead Developer
    Lead Developer

    Something like this should work:

    .sidebar .widget {box-shadow: 10px 10px 5px #555;}

    More about box-shadow: http://www.w3schools.com/cssref/css3_pr_box-shadow.asp

    #14346
    Ross Robson

    Thats great thanks, could you give me code for the content area one please πŸ™‚

    #14347
    Ross Robson

    Would like the shadow to be equal around the whole of the box on both content and sidebar

    #14546
    Tom
    Lead Developer
    Lead Developer

    .inside-article would be the element you target for the content.

    To make it even around the containers, something like should should work: box-shadow: 0 0 10px #222;

    #14741
    Ross Robson

    thanks πŸ˜€ what would the element be for the comments box also, is there any other comments plugins that you would recommend to use instead of the basic one?

    #14743
    Ross Robson

    also curious as how i could get the separators like this website has down the sides on its menus as it looks nice, kind of like a bevel effect

    #14767
    Tom
    Lead Developer
    Lead Developer

    .comments-area

    You should use Firefox and “Firebug” to explore through the different HTML elements – it makes targeting specific things much easier. Chrome also has an “inspect element” feature.

    By default, GP has these gaps between sidebars and content.

    Using the Spacing addon, you can adjust this gap to your liking.

    #14817
    Ross Robson

    sorry i meant to post this link http://www.step-by-step-paleo.com/ i mean the separators on the side menus but i want them in the main nav, any ideas? πŸ™‚

    #14819
    Ross Robson

    my site is pontyclundarts.co.uk, as you can see i have a black main menu but be nice to have something separating the options πŸ™‚

    #14840
    Tom
    Lead Developer
    Lead Developer

    Something like this should work:

    .main-navigation ul li a {
        border-right: 1px solid #000;
    }
    #16042
    Ross Robson

    How would i find the ID of certain widgets areas so i can place a picture there without the spacing around it, kind of like your blue ones on here?

    #16045
    Tom
    Lead Developer
    Lead Developer

    Using Firebug, right click the widget and inspect element.

    Move up the tree until you find the “aside” element, and then grab it’s ID.

    That’s the one you want πŸ™‚

    #16589
    Ross Robson

    Hi Tom could you tell me why my page http://7dd.613.myftpupload.com/news/ looks a little off with the spacing? its just this page

    #16717
    Tom
    Lead Developer
    Lead Developer

    This piece of CSS is causing that:

    .post {
        padding: 15px !important;
    }

    It’s being added by your “jigoshop” plugin.

Viewing 15 posts - 1 through 15 (of 28 total)
  • You must be logged in to reply to this topic.