How to remove the left and right arrows from the site. http://eranewgames.ru/

I can not understand where they lie. They are not in Html. It remains only js or css.

Where to find the code responsible for the action and display arrows? so that I can remove them and replace them with my own

  • .tparrows {display: none; } - HamSter
  • @ElenaSemenchenko, Where to write this? And you can do so that the arrow would remain but did not move? - Andro
  • It is written in styles. In general, rewolution slider is configured from the admin panel. - HamSter
  • @xTIGRx, could you add some relevant code to the question? On the site, as I understand the shooter is long gone .. - vp_arth

2 answers 2

You can remove the navigation from the administrative part, go to the settings of the plug-in, Revolution Slider> settings or settings depending on what localization is next navigation> navigation arrows and select the value. Or via css .tparrows {display: none; }, below there are input fields for custom css / javascript.

    If the arrow has a class or id then so js

    a = document.getElementsByClassName("arrow-class"); a[0].style.display = 'none';