In Lyx beamer environment, enumerate is not compiling properly: the balls overlay the first letters of the item text, and the numbers are to the left of the balls (and invisible because they're white on white--confirmed by changing color). This does not occur when my preamble only contains \usetheme{Madrid} but it does occur when I add the code I have found to reduce space between displayed equations. I am not aware of any other way to globally reduce space between displayed equations.
Any tips would be greatly appreciated.

Here is the code from my Lyx document that generates this image:
#LyX 2.0 created this file.
\lyxformat 413
\begin_document
\begin_header
\textclass beamer
\begin_preamble
\usetheme{Madrid}
% Code to reduce space between displayed equations
\g@addto@macro\normalsize{%
\setlength\abovedisplayskip{2pt}
\setlength\belowdisplayskip{2pt}
\setlength\abovedisplayshortskip{2pt}
\setlength\belowdisplayshortskip{2pt}
}
\end_preamble
\use_default_options true
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry true
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 1
\cite_engine basic
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout BeginFrame
Testing
\end_layout
\begin_layout Enumerate
Elephant
\end_layout
\begin_layout Enumerate
Zebra
\end_layout
\begin_layout Enumerate
Jaguar
\end_layout
\begin_layout Standard
Want less space between display equations
\begin_inset Formula
\[
y=a+bx
\]
\end_inset
\end_layout
\begin_layout Standard
and
\end_layout
\begin_layout Standard
\begin_inset Formula
\[
z=d+rw
\]
\end_inset
\end_layout
\begin_layout Standard
ending here.
\end_layout
\begin_layout EndFrame
\end_layout
\end_body
\end_document


.texfile (in LyX go to File > Export) and post that here. There are many people here who do not use LyX, and this really comes down to a LaTeX question (because you are using preamble code). – scottkosty Apr 09 '15 at 05:33