Skip to content

Instantly share code, notes, and snippets.

View mihailsitnic's full-sized avatar

Mihail Sitnic mihailsitnic

  • Positron
  • United Kingdom
View GitHub Profile
Уважаемый клиент!
Прежде всего выражаем Вам свою благодарность за доверие, оказанное компании Link-Host.net! Вы сделали правильный выбор.
Вам открыт доступ в Систему биллинга, где Вы можете оплатить наши услуги любым удобным Вам способом.
Доменное имя будет зарегистрировано и станет доступно в течении суток после поступления оплаты.
Параметры Вашего заказа:
--------------------------------------
<style>
.wrap-col-l > a {
position: fixed;
top: 0;
left: 0;
}
.wrap-col-r > a {
position: fixed;
top: 0;
right: 0;
<script type="text/javascript">
function bannerSize() {
var col_l = document.querySelector('.wrap-col-l'),
col_r = document.querySelector('.wrap-col-r');
col_l.querySelector('a').style.width = col_l.offsetWidth + 'px';
col_l.querySelector('a').style.height = col_l.offsetHeight + 'px';
col_r.querySelector('a').style.width = col_r.offsetWidth + 'px';
col_r.querySelector('a').style.height = col_r.offsetHeight + 'px';
const arr = [
{
key: 'value',
},
{
key: 'value',
},
{
key: 'value',
},
window.onscroll = () => {
const yPos = window.pageYOffset;
// your function
}
Hi Mihail,
First of all, thank you for purchasing our theme.
The best option is to explore error log on your server and identify the exact cause (probably memory or script timeout).
Either way, this needs to be fixed on a server level. Please refer to following info on how to increase memory and script timeout time:
Memory increase:
Skip to main contentSkip to toolbar
About WordPress
IfDelayed
81 WordPress Update, 5 Plugin Updates, 1 Theme Update, Translation Updates
00 comments awaiting moderation
New
View Page
SEOEnter a focus keyword to calculate the SEO score
Filters content by languageShow all languages
Howdy, admin
import React, { Component } from 'react';
import { addLocaleData, IntlProvider } from 'react-intl';
import * as ru from 'react-intl/locale-data/ru';
import * as en from 'react-intl/locale-data/en';
import languages from '../languages';
import FormComponent from '../components/formComponent';
import './FormPage.sass';
addLocaleData(...en, ...ru);
// я создал тестовый app и в нём всё работает, но в реальном проекте у меня Form - это не функция а класс
import React from 'react';
import { injectIntl } from "react-intl";
const Form = ({intl}) => {
return (
<div>
<textarea placeholder={intl.formatMessage({ id: 'nav.placeholder' })}></textarea>
</div>
)
/* Flex grid
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */
.row, .col-1, .col-2, .col-3, .col-4, .col-5,
.col-6, .col-7, .col-8, .col-9, .col-10, .col-11 {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}