Topic closed before problem solved

Hi

my topic (Problem with content arrangement in two columns) was closed before I was helped with the issue. I just attached a secure note and received a notification from wordpress about a new admin login - does it mean I’m receiving help despite the topic being closed?

Thank you
R

Hi @rayman_15,

Thanks for writing to us.

I have replied to your previous thread. Kindly check the thread.

Thanks

Hi prakash

thank you for your help. Unfortunately, the screenshot you posted is from my old website, which wasn’t even made using Pro/Themeco Products, and to which the website I am building with Pro is currently redirecting.

If you could visit the correct site (linked in a secure note), you’ll see that on the Contact page there is still using a two column layout and the problem I described in my original posts is still present.

I have disabled the redirection plugin, so please kindly visit the linked website using the credentials I provided in a secure note. :slight_smile:

Please also note that the original thread is still marked as locked, so I’m unable to reply there.

Thank you!

Hello @rayman_15,

Your left column is not aligned with the right column because you have added this custom CSS in the section’s inline element CSS.

$el > .x-row > .x-row-inner > .x-col:first-child {
    padding-top: 90px;
    padding-bottom: 90px;
  }

Full CSS code:

@media (min-width: 767px) {
  $el {
    overflow: hidden;
  }
  
  $el > .x-row > .x-row-inner > .x-col:first-child {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  $el .x-text.x-text-headline {
    min-width: 9em;
  }

  $el .x-row .x-row {
    margin-left: 0px;
  }

  $el > .x-row > .x-row-inner > .x-col .x-bg {
    width: calc(100% + 8rem);
  }
}

What this code does is that it will be applied to every first column of the row that will be inserted in the Intro section. Kindly remove the top padding to get your issue resolved.

Hope this explains your issue.

1 Like

This solved the issue. Thank you very much for quick help!!

Glad that we could be of help.

Cheers!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.