diff --git a/src/freedombone-app-pelican b/src/freedombone-app-pelican
index df78ac77db1fd93ec32491af8e53509046572607..4749b138c66470cf35efd45ec78f3029b0050bf4 100755
--- a/src/freedombone-app-pelican
+++ b/src/freedombone-app-pelican
@@ -741,6 +741,14 @@ function pelican_themes {
     git clone https://github.com/samael500/w3-personal-blog
     git clone https://github.com/jarv/water-iris
     git clone https://github.com/kplaube/yapeme
+
+    # remove any dubious css
+    for d in */ ; do
+        THEME_NAME=$(echo "$d" | awk -F '/' '{print $1}')
+        if [ -d $d/static/css/style.css ]; then
+            sed -i '/googleapi/d' $d/static/css/style.css
+        fi
+    done
 }
 
 function mesh_install_pelican {