Support only during business hours : Monday to friday, from 8:30 am – 5:30 pm CEST

Due to the decrease in our staff due to vacations, our response time may be longer.

Be sure we're doing our best to manage your topic as soon as possible.

Register Page Styling Issue

Waiting for Themosaurus team
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • Alongar
    Participant
    • 40 Topics
    • 113 Posts
    @alongar

    Hello,

    The member registration page has styling issues from the recent updates with Paid Membership Pro. Also, any word on the fix for this issue here:

    Register Page using Paid Memberships Pro Styling Not Working After Update

    Alongar
    Participant
    • 40 Topics
    • 113 Posts
    @alongar

    Also more styling issues with registering. I attached another screenshot.

    Alongar
    Participant
    • 40 Topics
    • 113 Posts
    @alongar
    This reply has been marked as private.
    Manathan
    Keymaster
    Themosaurus Support
    • 0 Topics
    • 6725 Posts
    @themodactyl

    Hi Alongar,

    Thank you for reporting this issue! Seems indeed PMPro made several changes. 🙂

    Could you try with this snippet please :

    
    /**
     * Account
     */
    
    #site .pmpro_card{
      background-color:var(--grimlock-archive-post-background-color);
      color:var(--grimlock-archive-post-color);
      border:0px;
    }
    .pmpro_card .pmpro_card_title{
      color:inherit;
    }
    
    /**
     * Fields
     */
    
    #site .pmpro_form_input{
      background-color:var(--grimlock-control-background-color);
      border-color:var(--grimlock-control-background-color);
      color:var(--grimlock-archive-post-color);
    }
    
    /**
     * Login
     */
    
    .pmpro_card_actions{
      text-align:center;
      border:none !important;
    }
    #site .pmpro_section #loginform .login-submit .button{
      background-color:var(--grimlock-button-primary-background-color);
      color:var(--grimlock-button-primary-color);
    }
    #site .pmpro_section #loginform .login-submit .button:hover{
      background-color:var(--grimlock-button-primary-hover-background-color);
      color:var(--grimlock-button-primary-hover-color);
    }
    .pmpro_form_field-password-toggle button, .pmpro_form_field-password-toggle button:hover, .pmpro_form_field-password-toggle button:focus, .pmpro_form_field-password-toggle button:active{
      color:inherit !important;
    }
    .pmpro_form_field-password-toggle svg{
      stroke:CurrentColor;
    }
    .pmpro_section:not(.pmpro_checkout_gateway-none) .pmpro_cols-2{
      display:block;
    }
    .pmpro_section:not(.pmpro_checkout_gateway-none) .pmpro_cols-2 .pmpro_form_field{
      width:100%;
    }
    #site .pmpro_form_label, #site .pmpro_form_field{
      color:var(--grimlock-text-color);
    }
    
    /**
     * Levels
     */
    
    #pmpro_levels .pmpro_card, 
    .pmpro_table, 
    .pmpro_table tbody th, 
    .pmpro_table tbody td, 
    .pmpro_table tfoot td,
    .pmpro_card.pmpro_login_wrap{
      background-color:transparent !important;
      box-shadow:none;
      border:none !important;
    }
    #pmpro_levels .pmpro_card .pmpro_card_content{
      padding:0px;
    }
    table.pmpro_levels_table{
      display:block;
      border:none;
      box-shadow: none;
    }
    table.pmpro_levels_table thead{
      display:none;
    }
    table.pmpro_levels_table tbody{
      display:grid;
      grid-gap:2rem;
      grid-template-columns: 1fr;
    }
    table.pmpro_levels_table tbody > tr {
      display:block;
      padding: var(--grimlock-archive-post-padding);
      display:grid;
      grid-gap:1rem;
      grid-template-columns: 1fr;
      box-shadow: 0px 0px 20px 0px rgba(27, 26, 35, .3);
      background-color:var(--grimlock-archive-post-background-color);
      border-radius:var(--grimlock-archive-post-border-radius);
      border: var(--grimlock-archive-post-border-width) solid var(--grimlock-archive-post-background-color);
      transition: all 0.3s;
    }
    table.pmpro_levels_table tbody > tr:hover{
      border: var(--grimlock-archive-post-border-width) solid var(--grimlock-button-primary-border-color);
    }
    table.pmpro_levels_table tbody > tr th, table.pmpro_levels_table tbody > tr td{
      text-align:center;
      padding:0px;
      background-color:transparent;
    }
    table.pmpro_levels_table tbody > tr th{
      font-size: 1.5rem;
      line-height: 1.25;
    }
    table.pmpro_levels_table tbody > tr th + td{
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--grimlock-button-primary-background-color);
    }
    table.pmpro_levels_table tbody > tr td:has(.pmpro_btn){
      margin-top:1rem;
    }
    table.pmpro_levels_table tbody > tr td .pmpro_btn, #site .pmpro_btn:not(.pmpro_btn-password-toggle){
      background-color: var(--grimlock-button-primary-background-color);
      color: var(--grimlock-button-primary-color);
      font-family: var(--grimlock-button-font-family);
      font-weight: var(--grimlock-button-font-weight);
      border: var(--grimlock-button-border-width) solid var(--grimlock-button-border-color);
      padding: var(--grimlock-button-padding-y) var(--grimlock-button-padding-x);
      font-size: var(--grimlock-button-font-size);
      line-height: var(--grimlock-button-line-height);
      border-radius: var(--grimlock-button-border-radius);
      transition: all 0.2s ease-in-out;
      text-transform: var(--grimlock-button-text-transform);
      letter-spacing: var(--grimlock-button-letter-spacing);
    }
    table.pmpro_levels_table tbody > tr td .pmpro_btn:hover{
      background-color: var(--grimlock-button-primary-color);
      color: var(--grimlock-button-primary-background-color);
      border: var(--grimlock-button-color);
    }
    @media (min-width: 992px) {
      table.pmpro_levels_table tbody{
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    Best,

    Alongar
    Participant
    • 40 Topics
    • 113 Posts
    @alongar

    Hi thanks, it fixed most of the issues. However, the registration page is still showing issues. Screenshot provided.

    Manathan
    Keymaster
    Themosaurus Support
    • 0 Topics
    • 6725 Posts
    @themodactyl

    Hi Carm,

    I updated the snippet. Can you tell me if all is looking good, now ? 🙂

    Best,

    Alongar
    Participant
    • 40 Topics
    • 113 Posts
    @alongar

    Hi,

    The updated snippet fixed the issue. Thank you.

    Manathan
    Keymaster
    Themosaurus Support
    • 0 Topics
    • 6725 Posts
    @themodactyl

    Glad to read that Alongar!

    Be sure this issue will be solved in the next update of Grimlock for PMPro 🙂

    Cheers,

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.

Troubleshooting Demo Imports

You're trying to setup your theme but you're experiencing errors when importing the demo content? Or you've just followed the setup guide but your website doesn't look exactly like our demo? These are common issues for which you can find easy and quick fixes.

Happy With our Support So Far?

Feel free to review our theme on Themeforest! It helps us making our products more known to new potential customers, which allow us more time to improve the quality and develop new features. #SharingIsCaring ❤️

Discover MatchPress

Skip • Like • Super-Like

Add powerful matching features like Member likes, skips, super likes, conditional private messaging and much more.

Setup Your Cera or Gwangi powered Community Website and Turn it into an iOS and Android App

15% discount for Cera users

To unleash the full power of your Cera or Gwangi theme, we have partnered with the Zipline team. Your community website can now be fully setup and turned into your very own custom app for iOS and Android.

Whether you've newly acquired the theme or already got your site up and running, Zipline got you covered. And we got you an incredible discount.

Holiday, Weather & Festive effects
to pimp your WordPress Site