XF 2.3 Styling Error When Clicked "Register" Button

TheMasso

Member
After all the changes I've made to my forum, I decided to register as a test user but whenever I'm trying to that after clicking the register button, unexplainable weird theme/styling glitch comes up.

Before clicking "Register" button:

First Picture:

Before-Widget.webp

Second Picture:

Before-Nav.webp


And results after clicking Register. The whole forum is centered by itself. Even the register screen too.

After-Register2.webp

You can check it out by yourself by visiting Deadlockturk.com.

Edit: This is only happening when trying to select Turkish language. English language works fine. Any ideas what causing this?
 
Last edited:
You have added inline CSS (<style>) to the register template (or one of its sub-templates):

Less:
        body {
            text-align: center; /* Sayfa içindeki tüm metni ortala */
        }

        h3 {
            display: inline-block; /* Metni blok olarak görüntüleyerek ortalamayı sağlar */
        }
 
Back
Top Bottom