Title: Custome CSS problem
Last modified: June 17, 2017

---

# Custome CSS problem

 *  [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/)
 * Hello,
 * After recent updates, the page has stopped working, I can now do two variants:
   A) it displays properly but no buttons are home, shop etc or B) I lose colors
   and settings C. CSS but Www works. In my opinion, the problem is that WP + Virtue
   does not properly accept custome CSS data, and after changing the code and after
   validating the changes in the cockpit (the message appears in the green box),
   all CSS custome disappears and no change is possible. (page: mojesoczewki.pro)
   Yesterday I sacrificed 15h for different backup variants, unfortunately I fell
   and without support I will not win.
 * Please help or guide to solve the problem
 * Regards
    I
 * ps. writes from Poland, the original text: (być może są tu użytkownicy tego szablonu
   z naszego kraju) Otóż, mam problem z szablonem Virtue i prawdopodobnie sekcją
   custome CSS, po ostatnich aktualizacjach, strona przestała działać, obecnie mogę
   zrobić dwa warianty: A) web wyświetla się poprawnie ale nie działają guziki typu
   home, sklep itp. albo B) tracę kolory i ustawienia C. CSS ale www działa. Moim
   zdaniem problem to WP + Virtue nie przyjmuje poprawnie danych custome CSS a po
   zmianie kodu i po poprawnym zatwierdzeniu zmian w kokpicie (wyświetla się komunikat
   na zielonym polu), cały custome CSS znika i nie są możliwe żadne zmiany. wczoraj
   poświeciłem 15h na różne warianty z backupami, niestety poległem i bez wsparcia
   tego nie wygram. Proszę o pomoc lub naprowadzenie na rozwiązanie problemu, pozdrawiam.

Viewing 15 replies - 1 through 15 (of 30 total)

1 [2](https://wordpress.org/support/topic/custome-css-problem/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/custome-css-problem/page/2/?output_format=md)

 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9241713)
 * Hi infinnitywaves,
    What css are you adding and where are you adding it? Have
   you tried deactivating your plugins? I would recommend doing so one by one to
   test if any are conflicting. Let me know if there’s no change.
 * Hannah
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242173)
 * Hi hannah,
 * Of course, I tried everything. Custome CSS added in WP …/theme options/advance…
   </> Can not see here the option of attachments, You want me to paste directly
   here all c.css? It’s a little bit.
 * I.
 *  [Kevin](https://wordpress.org/support/users/jx-3p/)
 * (@jx-3p)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242194)
 * I’m able to view your CSS and it looks like you’ve got a lot of `!important` 
   tags and other things that are a bit too general and may have unintended consequences
   on your site.
 * It’s possible that with the update, some of the selectors have changed. Without
   notes, it’s difficult to know what exactly each bit of CSS on your site’s intended
   usage was.
 * I’ll send this thread onto the theme developer so that he can provide some input.
 * -Kevin
 *  [Kevin](https://wordpress.org/support/users/jx-3p/)
 * (@jx-3p)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242200)
 * Also, it wasn’t very clear in your previous post, but did you try deactivating
   all of your active plugins one by one, viewing the issue with each plugin turned
   off individually?
 * This is a good way to determine whether or not the issue is caused by a certain
   plugin, which often times is the case.
 * -Kevin
 *  [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242219)
 * Hey,
    Do you have an example of how this is supposed to look?
 * One of the main issues I see on your page has to do with a “fontResizer” plugin.
 * You seem to be adding this css:
 *     ```
       .fontResizer {
           right: 1% !important;
           top: 5% !important;
       }
       ```
   
 * Which directly conflicts with the css the plugin is adding:
 *     ```
       .fontResizer {
           position: fixed;
           left: 1%;
           bottom: 1%;
           visibility: visible;
           z-index: 9999;
       }
       ```
   
 * Causing the div that contains your font resizer to cover the entire page and 
   thus makes every button inside the page unclickable.
 * So I’m going to suggest you update your css to this:
 *     ```
       .fontResizer {
       right: 1% !important;
       top: 5% !important;
       left: auto !important;
       bottom:auto !important;
       }
       ```
   
 * Or just remove your css.
 * Kadence Themes
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242639)
 * Hi Kevin,
 * **ad.1 **
 * So I have quite a lot of overwrites with the “important!” Options. This is the
   only way not to interfere with the original code.
 * So i noticed that the new update has changed the “selectors”
 * Perhaps I did not explain this clearly, now the SQL file does not accept any 
   changes. SQL is corrupt and anything typed (after being in WP) is not added to
   the file.
 * I.
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242653)
 * **ad.2 **
 * (I use a translator, it’s definitely a bad method for conversations).
 * After all the plugins off, still not working properly.
 * I.
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242673)
 * **ad.3 **
    Access to custom css is only possible through phpMyAdmin. At the moment
   do not see the custome css code in the Theme options/… although it works and 
   that is the main problem, not the corrections and the confts. I do not know if
   you understand what he is trying to convey?
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242709)
 * During the Virtue aotoupdate there was a flaw that caused the whole SQL corruption.
   Now I can not edit it. This causes a whole cascade of further errors.
 * The main page and subpages are working, but I have to trigger everything manually
   from WP
 * e.g:
    [http://mojesoczewki.pro/kontakt/](http://mojesoczewki.pro/kontakt/) [http://mojesoczewki.pro/shop/soczewki-kontaktowe/soczewki-kontaktowe-acuvue-oasys-for-astigmatism-johnson-johnson-6-sztuk/](http://mojesoczewki.pro/shop/soczewki-kontaktowe/soczewki-kontaktowe-acuvue-oasys-for-astigmatism-johnson-johnson-6-sztuk/)
 * (At this point not seeing a quick solution builds this site from the beginning,
   it is true that only 32 products but in 1320 variants. ..@#$%^&* heh)
 * Answer the request, below the whole custome CSS (virtue is a great template but
   lacks a lot of options in it): [http://serwer1774039.home.pl/PUB/Quick_CSS_4_002b.rar](http://serwer1774039.home.pl/PUB/Quick_CSS_4_002b.rar)
 * I.
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242718)
 * ps. Thank you all dedicated time for your help
    -  This reply was modified 8 years, 11 months ago by [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/).
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9242778)
 * Some additional information:
 * 1. full site was 100% valid in the middle of the year (including plugins).
 * 2. problem occurred with recent updates.
 * 3. at this address is the working version of v2 (it works from the beginning 
   until the second day so there is not much) without custome CSS [http://serwer1774039.home.pl/autoinstalator/wordpress1/](http://serwer1774039.home.pl/autoinstalator/wordpress1/)
 * 4. If my old custome CSS requires correction then it would be fantastic to receive
   help from you, it will speed up the resume of the site.
 * I
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9245843)
 * ps. Is there a list of “selectors” changed?
 * I
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9246052)
 * Sorry, I’m not sure I’m following. Could you please explain your current issue,
   or are things now working?
 * There isn’t a list of selectors, but you can use the chrome inspect tool. [https://www.kadencethemes.com/chrome-inspect-tool/](https://www.kadencethemes.com/chrome-inspect-tool/)
 * Hannah
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9246200)
 * Hi hannah
 * **ad.1**
    But what works? The web v1 after the updates is not usable. As I wrote,
   SQL was corrupted by the Virtue update. Nowadays, for this reason I have to build
   a whole web v2 from the beginning
 * **ad.2**
    This is not a comparison of old “classes”(selectors?) with new “classes”
   only tutorial how to use the browser – I wanted to change to fast in my custome
   css what changed in Vitrue (wrote about this user: Kavin)
 * I
 *  Thread Starter [Infinitywaves](https://wordpress.org/support/users/infinnitywaves/)
 * (@infinnitywaves)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/#post-9246215)
 * Related statements: Theme Author Kadence Themes (@britner)
 * ad. “.fontResizer { …” It worked earlier and works now correctly. This is a part
   of the plugin and not my css.
 * I

Viewing 15 replies - 1 through 15 (of 30 total)

1 [2](https://wordpress.org/support/topic/custome-css-problem/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/custome-css-problem/page/2/?output_format=md)

The topic ‘Custome CSS problem’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/virtue/3.4.15/screenshot.png)
 * Virtue
 * [Support Threads](https://wordpress.org/support/theme/virtue/)
 * [Active Topics](https://wordpress.org/support/theme/virtue/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/virtue/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/virtue/reviews/)

 * 30 replies
 * 4 participants
 * Last reply from: [hannah](https://wordpress.org/support/users/hannahritner/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/custome-css-problem/page/2/#post-9278344)
 * Status: not resolved