Home Forums WoodMart support forum Customize my account page

Customize my account page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #327205

    tsubakuma
    Participant

    Hello.

    I have the following hopes.
    1. I want to hide the area in the left column (My Account menu).
    2. I want to change the details of the right column so that it can be displayed in 100% width.

    See attached file.

    I couldn’t do it just by typing the following in the additional CSS:

    .wd-my-account-sidebar {
    display:none;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    }

    Can it be achieved by adding something to CSS?

    Attachments:
    You must be logged in to view attached files.
    #327256

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .wd-my-account-sidebar {
        display: none;
    }
    body .woocommerce-MyAccount-content {
        flex: 1 0 100%;
        max-width: 100%;
        width: 100%;
    }

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)