A
A
Artyom2020-07-08 08:06:48
HTML
Artyom, 2020-07-08 08:06:48

How to make bitrix crm form horizontal?

Good day!
On the site I place a form created in Bitrix CRM.
Tell me where to drip to make it layout in a horizontal style, as in the picture:
5f055497d62f6979457304.jpeg

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Emelyanov, 2020-07-10
@monkeybone

Write your own styles and arrange as you like:
5f07aec0278e4329277434.png

M
Mr. DAVIDhaker, 2015-03-13
@DAVIDhaker

RewriteRule module is needed for this task RewriteRule
directive:
RewriteRule ^PATTERN$ /REDIR [FLAGS]
RewriteRule ^user/([0-9]+)$ /users/profile/$1 [L,QSA] - will redirect all site.com / user/ ([0-9]+) to /users/profile/ $1
All pages that match the regular expression ^user/([0-9]+)$ (e.g. site.com /user/23 ) will be redirected to site .com /users/profiles/123
Code .htaccess:

RewriteEngine On
RewriteBase /

RewriteRule ^id([0-9]+)/?$ /userstorage/$1/index.html [L,QSA]
RewriteRule ^id([0-9]+)/main.css?$ /userstorage/$1/main.css [L,QSA]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question