Good day!
There is a small script to add css properties for each menu item.
$(document).ready(function () { var icon = [ 'images/okna.png', 'images/portal.png', 'images/ico3.png', 'images/zabor.png', 'images/navesi.png', 'images/s.png', 'images/ico-2.png', 'images/ico4.png', 'images/ico7.png', 'images/ico8.png', 'images/ico9.png' ]; $('li a').each(function (e) { $(this).css({ 'color': 'red', 'background': '#414141 url("' + icon[e] + '")' }) }) })
Tell me why the pictures are displayed only on the main page (index.php)?