diff --git a/verticapy/jupyter/_javascript.py b/verticapy/jupyter/_javascript.py
index 1d0f7aaa5..c63750935 100644
--- a/verticapy/jupyter/_javascript.py
+++ b/verticapy/jupyter/_javascript.py
@@ -220,18 +220,6 @@ def clean_data(data: ArrayLike) -> ArrayLike:
val = "{:,}".format(val)
except:
pass
- if isinstance(val, bool) is False and not isinstance(val, NoneType):
- data[i][
- j
- ] = f"""
-
- {val}
-
"""
- continue
-
if isinstance(val, bool):
val = (
"✅"
diff --git a/verticapy/jupyter/html/style.css b/verticapy/jupyter/html/style.css
index dff10123e..2adb91c84 100644
--- a/verticapy/jupyter/html/style.css
+++ b/verticapy/jupyter/html/style.css
@@ -3,7 +3,9 @@ table td {
overflow: hidden;
text-align: center !important;
background-color: #FAFAFA;
+ white-space: nowrap !important;
}
+
table tr:nth-child(1) {
background-color: #FFFFFF;
}