J
J
JIakki2016-09-14 22:08:58
css
JIakki, 2016-09-14 22:08:58

When you cut an image, its size grows, what's wrong?

Original image e7f39c69e1ac49458a86309ddefa4035.png
1919x884 pixels, 168 kB
after command:

convert -resize 1400  maxCompress-H189jMD2.png 1.png
: 1400x645 pixels, 690 kb
How can I fix this?
Thanks in advance

Answer the question

In order to leave comments, you need to log in

4 answer(s)
Антон Кудаев, 2016-10-21
@antonkudaevpro

z-index:10000 !important;

I
Ivan Bogachev, 2016-08-13
@sfi0zy Куратор тега CSS

У вас в файле antonkudaev.pro/bitrix/templates/ska/scripts/script.js в строках 179-180 находится это:

$('.menu-item-has-children > a').on('click', function(e) {
    e.preventDefault();
    ....

скорее всего проблема где-то там. Неохота вникать в происходящее, но там вместо стандартного "перейти по ссылке" происходит что-то другое.

Роман Огарков, 2016-08-13
@ogarich89

Скорее всего у тебя навешено событие click на эти элементы, а на них отмена стандартных действий event.preventDefault().
Как вариант навесить на ссылки меню событие click

$('.primary-menu a').on('click', function() {
  window.location = $( this ).attr('href');
});

A
Adamos, 2016-09-14
@JIakki

The picture is with a palette, and IM converts it to RGB, adds halftones when scaling - and saves it in RGB. You need to explicitly tell him that halftones are not needed and you need to get an indexed image.

convert -resize 1400 -strip -dither None -colors 49 maxCompress-H189jMD2.png 1.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question