X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   XC5 Multi-Vendor Registration Column Width (https://forum.x-cart.com/showthread.php?t=78259)

Blainevk 06-13-2021 05:24 PM

XC5 Multi-Vendor Registration Column Width
 
Hello,

I want to widen the Registration Column on the left of the Vendor Registration Page ( https://blainestravelclub.com/travelpoints/giftmall/?target=register_vendor ) so the text description words do not bunch up, but are all on one line, IE:

Confirm Password
Store Description
Street Address
ETC.

Where do I find this page?

Thanks in advance for your help,
Blaine.

Ed B. 06-24-2021 02:01 AM

Re: XC5 Multi-Vendor Registration Column Width
 
As I don't have multi vendor version source code, I can't tell where the page is, but you can look for a View class containing code that look like
Code:

    public static function getAllowedTargets()
    {
        $list = parent::getAllowedTargets();

        $list[] = 'register_vendor';

        return $list;
    }

Good luck.

cflsystems 06-24-2021 04:48 AM

Re: XC5 Multi-Vendor Registration Column Width
 
You can change add this css to your admin custom css block


.register-vendor-form-container ul.main-table li.input div.table-label {width: 30.667%}


However you have multiple issues on this page - on smaller screens the text block on the right gets cut off, every form field has help text that is white on white background - so invisible, on some screen sizes this help text actually does not show at all, on desktop the form is restricted in width so everything related to the form is squished ...


I suggest you remove the columns and have the text block on the right and the form sit one under the other so each one take the whole width of the page. Either remove the help block for each form field or adjust css to be black on white (or some other colors, whatever works)


All times are GMT -8. The time now is 02:16 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.