Title: paulwpxp's Replies | WordPress.org

---

# paulwpxp

  [  ](https://wordpress.org/support/users/paulwp/)

 *   [Profile](https://wordpress.org/support/users/paulwp/)
 *   [Topics Started](https://wordpress.org/support/users/paulwp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/paulwp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/paulwp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/paulwp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/paulwp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/paulwp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 3,465 total)

1 [2](https://wordpress.org/support/users/paulwp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/paulwp/replies/page/3/?output_format=md)…
[229](https://wordpress.org/support/users/paulwp/replies/page/229/?output_format=md)
[230](https://wordpress.org/support/users/paulwp/replies/page/230/?output_format=md)
[231](https://wordpress.org/support/users/paulwp/replies/page/231/?output_format=md)
[→](https://wordpress.org/support/users/paulwp/replies/page/2/?output_format=md)

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Website looks different on different computers and phones](https://wordpress.org/support/topic/website-looks-different-on-different-computers-and-phones/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/website-looks-different-on-different-computers-and-phones/#post-13884090)
 * I suggest separate the questions and post them individually (1 post per question)
   into theme support forum via this link below, just in case ppl who’re using this
   theme might be able to help
    [https://wordpress.org/support/theme/velux/](https://wordpress.org/support/theme/velux/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Enforce custom CSS](https://wordpress.org/support/topic/enforce-custom-css/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/enforce-custom-css/#post-13883280)
 * Regarding the changing bg color on said elements, are you sure it’s not configurable
   via theme or plugin settings? I have a feeling that it’s configurable.
 * In case the option isn’t provided, with current settings, use these selectors
   for that (code be put in childtheme’s style.css, or Additional CSS section).
 *     ```
       body.wpb-js-composer .vc_tta-color-mulled-wine.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading, 
       body.wpb-js-composer .vc_tta-color-mulled-wine.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading {
       	background-color:yellow;
       	border-color:red;
       }
   
       body.wpb-js-composer .vc_tta-color-mulled-wine.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading:hover, 
       body.wpb-js-composer .vc_tta-color-mulled-wine.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-heading:hover {
       	background-color:red;
       	border-color:yellow;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-One] Hide entry-footer](https://wordpress.org/support/topic/hide-entry-footer/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/hide-entry-footer/#post-13883170)
 * I can confirm that the code work (via web deb tool I directly put that into child
   theme’s style.css). Could it be that your browser cache prevented the change 
   to appear?
 * Also if you want to use `#colophon` the selector must be like this
 *     ```
       .no-widgets #colophon.site-footer { }
       ```
   
 * but in this case, it’s not necessary to add `#colophon`
 * This is to change social icon color
 *     ```
       .footer-navigation-wrapper li .svg-icon { fill: #fff !important; }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-One] Hide entry-footer](https://wordpress.org/support/topic/hide-entry-footer/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/hide-entry-footer/#post-13879746)
 * This should take care of that, use the code in Additional CSS section.
 *     ```
       .no-widgets .site-footer { margin-top: 0; }
       ```
   
 * On a sidenote, the color contrast on social links and its background seems too
   low making it difficult to see.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to hide text for logged in users](https://wordpress.org/support/topic/how-to-hide-text-for-logged-in-users/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/how-to-hide-text-for-logged-in-users/#post-13877633)
 * WARNING: Always have full site backup, in this case make sure you have that functions.
   php file backup, it’s better to not edit php code on a live site especially for
   those who’s not experienced. For this kind of job, it’s better using CSS.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Custom Link for Menu to exclude child category](https://wordpress.org/support/topic/custom-link-for-menu-to-exclude-child-category/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/custom-link-for-menu-to-exclude-child-category/#post-13866561)
 * [@mattspace](https://wordpress.org/support/users/mattspace/) FWIW you can keep
   your current structure, it’s manageable. Use exclude-category plugin to remove
   that sub categories from the post listing (archive) page. For menu items, just
   use CSS display:none targeting the sub category, or manually putting in category
   archive links anyway we want.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Separate posts by user](https://wordpress.org/support/topic/separate-posts-by-user/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/separate-posts-by-user/#post-13866492)
 * It depends on how big it is the number of companies with its own content. If 
   there are significant numbers, it makes more sense to just do a separate WP installation
   using subdomain
 *     ```
       http://example.com 
       (main company with shared info)
   
       http://apple.example.com
       (posts specifically for apple company only)
   
       http://orange.example.com
       (and so on)
       ```
   
 * If it makes more sense to you to manage all contents within one WP installation,
   the only way to manage that is to use some kind of member plugin to create a 
   custom role assigned with custom capabilities.
    [https://wordpress.org/plugins/search/member/](https://wordpress.org/plugins/search/member/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can’t Login to my website with wp-admin since updating to 5.6](https://wordpress.org/support/topic/cant-login-to-my-website-with-wp-admin-since-updating-to-5-6/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/cant-login-to-my-website-with-wp-admin-since-updating-to-5-6/#post-13863973)
 * I see your login page shows up, are you able to login now?
 * If you still can’t login, make sure you keep that full site backup, follow the
   instruction on how to update WP manually (link in my previous post), it’s IMPORTANT
   that you’re experienced and know exactly how to do that otherwise have someone(
   who’s qualified to do so) do that for you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Recreate wordpress site from files (very old version)](https://wordpress.org/support/topic/recreate-wordpress-site-from-files-very-old-version/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/recreate-wordpress-site-from-files-very-old-version/#post-13863090)
 * > I have the files and folder structure, but it wasn’t exported using the wordpress
   > tools
 * Without database export, there is no way (nothing) to import into new db to create
   a new WP site. But realistically in this kind of situation, manually create a
   new WP site post by post (or page by page) is way cleaner. Suppose we have like
   100 posts (or pages), it would take 1 full day or a few days top.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Custom Link for Menu to exclude child category](https://wordpress.org/support/topic/custom-link-for-menu-to-exclude-child-category/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/custom-link-for-menu-to-exclude-child-category/#post-13862945)
 * Thanks [@vladytimy](https://wordpress.org/support/users/vladytimy/) for chiming
   in. [@mattspace](https://wordpress.org/support/users/mattspace/) Now obviously
   I misunderstood the OP. I thought we are talking about the menu items, so my 
   answer catered to that.
 * To alter the main archive/blog (posts listing) page to exclude some categories,
   I’d suggest using a plugin, this one is for example, but you can find many others
   in the plugin repo that do the same thing.
    [https://wordpress.org/plugins/ultimate-category-excluder/](https://wordpress.org/plugins/ultimate-category-excluder/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty] Blog header edits](https://wordpress.org/support/topic/blog-header-edits/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/blog-header-edits/#post-13861260)
 * Glad you got it working the way you like.
 * If you want to do that for ALL categories, to avoid duplicating that code many
   times, better use this one liner instead.
 *     ```
       .archive.category .archive-title span.color-accent { display: none; }
       ```
   
 * To learn CSS, there are many free or paid CSS courses available out there, but
   I think this old w3schools is best for the beginners because it has the try it
   live option.
    [https://www.w3schools.com/Css/](https://www.w3schools.com/Css/)
 * Once you have some basic understanding of how CSS works, then learn to use web
   dev tool.
    [https://developers.google.com/web/tools/chrome-devtools](https://developers.google.com/web/tools/chrome-devtools)
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [PDF doesn’t appear perfect](https://wordpress.org/support/topic/pdf-doesnt-appear-perfect/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/pdf-doesnt-appear-perfect/#post-13861158)
 * The pdf appears just fine, highly detailed all 156 pages, using FF84 Windows10.
   Have you tried clearing browser cache and reload? Could it be a temp drop in 
   your internet speed at the moment the page loaded?
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Custom Link for Menu to exclude child category](https://wordpress.org/support/topic/custom-link-for-menu-to-exclude-child-category/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/custom-link-for-menu-to-exclude-child-category/#post-13861046)
 * AFAIK, this can not be done via custom queries in the url. Since the job requirement
   is to not display a specific child category (along with its own child) from the
   menu, we can easily do that via CSS’s display none.
 * Inspect the element targeting that particular child category ID, and `display:
   none` it, the page will not display this category along with its children.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can’t Login to my website with wp-admin since updating to 5.6](https://wordpress.org/support/topic/cant-login-to-my-website-with-wp-admin-since-updating-to-5-6/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/cant-login-to-my-website-with-wp-admin-since-updating-to-5-6/#post-13860997)
 * First thing first, make sure you have a full site backup (all folders, files,
   and database). Most webhost providers have this automatic update nightly or weekly,
   it’s best to have a copy of full site backup just prior to your the problematic
   WP5.6 update.
 * Info on how to backup WP
    [https://wordpress.org/support/article/wordpress-backups/#backing-up-your-wordpress-site](https://wordpress.org/support/article/wordpress-backups/#backing-up-your-wordpress-site)
 * Once you have full site backup, follow the instruction on how to update WP **
   MANUALLY** detailed in this link (see the Manual Update section)
    [https://wordpress.org/support/article/updating-wordpress/#manual-update](https://wordpress.org/support/article/updating-wordpress/#manual-update)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fashion Diva] sidebar width](https://wordpress.org/support/topic/sidebar-width-84/)
 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/sidebar-width-84/#post-13860960)
 * At the moment I’m writing this the site is down showing this:
    `Error establishing
   a database connection`.
 * Anyway, the problem described sounds like normal behavior of the so called responsive
   design, sidebar displays as 100% width when users view the page using small screen
   devices.

Viewing 15 replies - 1 through 15 (of 3,465 total)

1 [2](https://wordpress.org/support/users/paulwp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/paulwp/replies/page/3/?output_format=md)…
[229](https://wordpress.org/support/users/paulwp/replies/page/229/?output_format=md)
[230](https://wordpress.org/support/users/paulwp/replies/page/230/?output_format=md)
[231](https://wordpress.org/support/users/paulwp/replies/page/231/?output_format=md)
[→](https://wordpress.org/support/users/paulwp/replies/page/2/?output_format=md)