Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #566317

    I would like to have the home page of my website be 3 columns with a drop shadow around the entire page.

    How can I create the drop shadow effect? Do I use an image with a drop shadow? If so, how big should the image be in size? Or do I use css or a combination of image and css?

    The effect I am looking forward can be seen on the Page: Dual Sidebar page at http://kriesi.at/themedemo/

    I can send an example of what I am talking about if that would help.

    Thanks in advance.

    kfranck

    #566378

    Hi Kurt!

    Add this to your custom CSS.

    #main {
        box-shadow: 0px 0px 4px black;
    }

    Regards,
    Elliott

    #566746

    Elliott:

    I added the css code you suggested in the quick css and there is no drop shadow. Nothing changed.

    Suggestions?

    #566886

    Hi,

    The code Elliott gave you was black so you can’t really see it, please try the following instead and adjust to your liking:

    #main {
        box-shadow: 10px 0px 10px white;
    }

    Best regards,
    Rikard

    #566894

    Rikard:

    Thank you. Can a certain page have drop shadow effect? I want to mimic this page:

    If so, do I make the css changes in the Quick css or within in the actual page. In my case, it would be home2 page.

    Thanks,
    kfranck

    #567064

    Hi,

    Yes that should be possible, but you will need to find the page id class of the page, you can find it by inspecting the page, the page id class is in the body tag. You can also see it in the URL when you are editing the page. So your CSS would look something like this:

    .page-id-000 #main {
        box-shadow: 10px 0px 10px white;
    }

    Best regards,
    Rikard

    #568176

    Rikard:

    This is a big help. Thank you.

    One other thing — and if you want me to open another post, I will — how would I create a main page that has rounded corners and the drop shadow?

    I want to pattern it after this site — http://kriesi.at/themes/abundance/templates/page-dual-sidebar/ — where the page (home2, in my case) has a drop shadow and rounded corners.

    Suggestions? Thanks.
    kfranck

    #568691

    Hi!

    Please use the below css for rounded corner + drop shadow
    Feel free to change the value of border-radius:10px; to suit your design. Target the container by it’s class name such as “wrap_all”

    .page-id-000 .wrap_all {
        box-shadow: 10px 0px 10px white;
        border-radius:10px;
    }

    Regards,
    Vinay

    #568865

    Thank you. If I want to change the width of my frontpage settings page (in my case Home2), how do I do that? I don’t want that page to be as wide. I want white space on both side.

    Where do I make those adjustments?

    Thanks,
    kfranck

    #568982

    Hey!

    Please go to Enfold theme options > General Layout > Dimensions and adjust them as needed.

    Cheers!
    Yigit

    #569000

    Yigit:

    I didn’t explain myself well enough. My goal is to have reduce the size of the pages, much like the http://kriesi.at/themes/abundance/ site. I want these pages to float inside the container.

    Can that be done?

    #569331

    Hi!

    Drag and drop a 1/1 layout grid and put all your page content inside it. You can then target the width using custom css or click the edit icon and add left and right padding like 30% or 25% each.

    Regards,
    Vinay

    #570294

    Thanks. Do I need a gridrow, too? If so, below the 1/1 layout?

    I envision, I would drag and drop a 1/1 layout and below that would by 1/5, 35/5 and 1/5. Then, I would change the left and right padding on the 1/1 layout to 25% or 30%.

    Does that sound right?

    K

    #571306

    Hi!

    yes, you can try that. Let us know if you need help with this and show us the results you have achieved so far.

    Cheers!
    Andy

    #645229

    Thanks.

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Create a page where the whole page has a drop shadow’ is closed to new replies.