Comment to 'How to remove title from page covers in Artificer theme'
  • Homepage Cover / Generall changes and for ALL (Guests and LoggedIn Members) only Artificer !!!

    image_transcoder.php?o=sys_images_editor&h=565&dpx=1&t=1659290113

    Big Font:

    For example, if you don't want to display the texts for guests and logged-in members, use the following code

    /* ----- Dark and Light Theme ----- */

    .text-4xl.sm\:text-5xl.xl\:text-6xl.tracking-tight.font-bold.text-gray-800.dark\:text-white {

      --tw-text-opacity: 0; }

    If u dont likes to have the "Welcome to the Community" font than use this :

    /* ----- Dark and Light Theme ----- */

    .text-4xl.sm\:text-5xl.xl\:text-6xl.tracking-tight.font-bold.text-gray-800.dark\:text-white {

      display: none; }

    ---------------------------------------------------------------------

    Small font:

    If u want to make the color of the small text transparent than use this:

    /* ----- Dark and Light Theme ----- */

    .p-8.font-light.text-gray-700.dark\:text-gray-300.text-base.sm\:text-lg.xl\:text-xl {

      --tw-text-opacity: 0;

    }

    If u dont likes to have the font than use this :

    .p-8.font-light.text-gray-700.dark\:text-gray-300.text-base.sm\:text-lg.xl\:text-xl {

    display: none;

    }

    Dont show big and small Font:

    ... use this code ...

    .text-4xl.sm\:text-5xl.xl\:text-6xl.tracking-tight.font-bold.text-gray-800.dark\:text-white,

    .p-8.font-light.text-gray-700.dark\:text-gray-300.text-base.sm\:text-lg.xl\:text-xl {

    display: none;

    }

    Makes Big and Small Font only transparent:

    ... use this code ...

    .text-4xl.sm\:text-5xl.xl\:text-6xl.tracking-tight.font-bold.text-gray-800.dark\:text-white,

    .p-8.font-light.text-gray-700.dark\:text-gray-300.text-base.sm\:text-lg.xl\:text-xl {

    --tw-text-opacity: 0;

    }

    Dont show the "Create Acc. Button "

    ... use this code ...

    .relative.mx-auto.py-16.text-center .bx-btn.bx-btn-primary {

      display: none;

    }

    Dont show the " Login Button"

    ... use this code ...

    .relative.mx-auto.py-16.text-center .bx-btn.ml-3 {

      display: none;

    }

    Don´t Show all two Buttons:

    .relative.mx-auto.py-16.text-center .bx-btn.bx-btn-primary,

    .relative.mx-auto.py-16.text-center .bx-btn.ml-3 {

      display: none;

    }

    ----------------------------------------------------------------------

    If u put this under ARTIFICER in ur CUSTOM CSS STYLE than all GUESTS and Members can´t see this anymore !!!!