Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

kephmuscb

Newbie
  
  • Posts

    24
  • Joined

  • Last visited

Everything posted by kephmuscb

  1. .view-presentation { padding: 12px; display: block; text-transform: uppercase; color: white; background: green; width: 190px; text-align: center; margin: 3rem auto; text-decoration: none; font-size: 18.42px; font-family: Roboto_Light; } .view-presentation:hover, .view-presentation:active{ color: #5f5f5f; background-color: #f2f2f2; text-decoration: none; }
  2. https://ilikesushi.in.ua/franchise как сделать чтоб между кнопкой и изображениями было небольшое расстояние и текст скачать презентацию был такой же как задать вопрос?
  3. как вставить в страницу в виде кнопки презентацию в пдф?
  4. в style.css @media (max-width: 450px) { #live-search {left: 15px; top: 115px;} .simplecheckout-customer-block #live-search {left: 15px;} .ask-question {bottom: 15px;} .container-table{padding: 5px;} .financial-model-table td{padding-left: 10px;} .financial-model-table td {font-size: 13px;} .open-delivery-text {font-size: 23px;} .most-dynamic-company .logo{width: 150px;} .most-dynamic-company-text {top: 70px;} .history-company-text {max-width: 263px; top: 234px; font-size: 14px;} } @media (max-width: 359px) { .ask-question {bottom: 5px;} .franchise-restaurant .name-franchise{font-size: 24px;} .write-us{bottom: 35px;} .most-dynamic-company-text {font-size: 25px;} .history-company-text {max-width: 230px; top: 209px; font-size: 13px;} .footer-list {font-size: 17px;} .footer-name {font-size: 18px;} .most-dynamic-company .sushi-this{left: 5px;} .sushi-this-list-mobile{padding-left: 90px;} } @media (max-width: 768px){ .wrap_items { height: calc(100vh - 120px); overflow: scroll; } }
  5. 900 строка там .product-list .wishlist, .product-list .compare { margin-bottom: 3px; } .product-list .wishlist a { color: #333333; text-decoration: none; padding-left: 18px; display: block; background: url('../image/add.png') left center no-repeat; }
  6. это не оно? @media (max-width: 600px) { .text-home-banner{display: none;} .franchise-restaurant .item-block{height: auto!important;} .sushi-this{display: none;} .bg-most-dynamic-company{display: none;} .sushi-this-list{display: none;} .most-dynamic-company .logo {top: 10px;} .most-dynamic-company-text{max-width: 100%; top: 105px;} .history-company-text{left: 32px; max-width: 351px; top: 286px; font-size: 18px;} .footer-name{padding-top: 10px; font-size: 21px;} .open-delivery-text {font-size: 42px;} .footer-list{display: block;} .pc-none{display: block;} .sushi-this-list-mobile{position: relative;top: 0px;right: auto;left: auto;font-size: 21.05px;max-width: 215px;padding-bottom: 35px;padding-top: 95px;padding-left: 97px;} .most-dynamic-company .sushi-this{display: block; top: auto;bottom: 10px;right: auto;left: 15px;height: auto;} }
  7. как сделать, чтоб текст в мобильной верссии сайта не съезжал?
  8. https://dropmefiles.com/30XBR часть кода где найден вредоносный код.
  9. если я скину скрипт с базы данных сможете помочь пожалуйста?
  10. строку нашли только как правильно удалить?
  11. там даже номер кошелька указан куда майнить
  12. Обращались к людям на фрилансе а они кроме работы вставили код для майнига на сайт. после проверки был найден код в базе данных. как убрать код чтоб не навредить сайту?
  13. # 1.To use URL Alias you need to be running apache with mod_rewrite enabled. # 2. In your opencart directory rename htaccess.txt to .htaccess. # For any support issues please visit: http://www.opencart.com Options +SymLinksIfOwnerMatch # Prevent Directoy listing Options -Indexes # Prevent Direct Access to files <FilesMatch "\.(tpl|ini|log)"> Order deny,allow Deny from all </FilesMatch> # SEO URL Settings RewriteEngine On # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ RewriteEngine On RewriteCond %{HTTP_HOST} ^www.старый домен$ [NC] RewriteRule ^(.*)$ https://новый домен/$1 [R=301,L] RewriteBase / RewriteRule ^sitemap.xml$ index.php?route=feed/fast_sitemap [L] RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] RewriteRule ^download/(.*) /index.php?route=error/not_found [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?route=common/home[?\s] [NC] RewriteRule ^ /? [R=301,L] RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?route=product/category[?\s] [NC] RewriteRule ^ /? [R=301,L] # убираем слэш в конце адреса RewriteCond %{REQUEST_URI} .+/$ [NC] RewriteRule ^(.+)(/)$ $1 [L,R=301] AddType text/css .css .cssgz AddEncoding x-gzip .cssgz FileETag MTime Size <ifmodule mod_expires.c> <filesmatch ".(jpg|jpeg|gif|png|ico|css|js)$"> ExpiresActive on ExpiresDefault "access plus 1 year" </filesmatch> </ifmodule> <IfModule mod_setenvif.c> BrowserMatch "MSIE" force-no-vary BrowserMatch "Mozilla/4.[0-9]{2}" force-no-vary </IfModule> <IfModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text\.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image\.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* </IfModule> ### Additional Settings that may need to be enabled for some servers ### Uncomment the commands by removing the # sign in front of it. ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that. # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it: # php_flag register_globals off # 2. If your cart has magic quotes enabled, This may work to disable it: # php_flag magic_quotes_gpc Off # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try # php_value upload_max_filesize 999M # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value post_max_size 999M # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_execution_time 200 # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields # php_value max_input_time 200 # 7. disable open_basedir limitations # php_admin_value open_basedir none
  14. как настроить правильно переадресацию на сайте? есть один домен, но нужно чтоб все было на другом домене и чтоб при этом позиции сайта не опустились. единственное переадресация на молодой домен.
  15. CMS DigiStore это что там можно сделать маркетплайс?
  16. а можно сделать макретплайс типо пром юа , чтоб продавцы тоже могли выставлять товары
  17. можно ли на опенкарт сделать маркетплайс? наподобии типо пром юа. и где скачать опенкарт чтоб установить? опенкарт платный или нет?
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.