• Resolved Simplelifehomestead

    (@digitaleyours)


    I am using an HP laptop, windows 10 latest version. I have woocommerce installed. Storefront theme. This is the my accounts page and it is an auto-created page from install of woocommerce. I am familiar with editing code, however, I just don’t know what page, etc. to edit or what code to change/put in. I am still in the development stages so there are a lot of things still left to do. I have it where you are required to sign up, if that even matters.

    On the page: Where it shows on the left side of the page: Dashboard, orders, downloads, etc. links. I would like the full word to show, not have the word cut off. So I was thinking I needed to adjust the width of that “column”? How would I go about this?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @digitaleyours,

    That’s a great question. The tricky part is we can’t see the actual page since we’re not logged in. It’s against the forum’s terms of service to share logins so that’s not an option either.

    Here’s what this column looks like on my test site with the Storefront theme.

    Here, the width of this can be changed by adding a bit of CSS to the Additonal CSS section of the Customizer. Something like this:

    
    @media (min-width: 768px) {
    
        .woocommerce-MyAccount-navigation {
            width: 25%;
        }
    
        .woocommerce-MyAccount-content {
            width: 65%;
        }
    }
    

    The first style is for the left column and the second is for the right. You’ll need to adjust both as you make changes. See if something like that will work for you. It could be different depending on the theme and how it is set up.

    Mirko P.

    (@rainfallnixfig)

    Hi there,

    Just a heads up, we’ve not heard back from you in a while so I’ll go ahead and mark this thread as resolved. Hopefully, the above information was helpful to you!

    If you have further questions, please feel free to open a new topic.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Resize a column on accounts page’ is closed to new replies.