Skip Navigation

[Resolved] getting links behind divi's "et_builder_inner_content et_pb_gutters3" clickable

This support ticket is created 3 years, 11 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 2 replies, has 2 voices.

Last updated by jameyC-2 3 years, 11 months ago.

Assisted by: Christian Cox.

Author
Posts
#2075099

I am trying to use toolset to remove or shrink this divi element(et_builder_inner_content et_pb_gutters3). It is hiding the links I want to be clicked behind it. I have been using prior posts related to this topic to help, but none seem to work. All of them say to use "[wpv-post-body view_template="your-loop-item-created-with-divi-template" suppress_filters="true"]", but I have tried this and it does not work. I have attached the link to the direct page I am trying to do this on. I am trying to rid the overlying "gutter" container so that the buttons are clickable. Any assistance would be appreciated

hidden link

#2075137
Screen Shot 2021-06-02 at 1.47.13 PM.png

Hi, in the CSS inspector it looks like the main content area has relative positioning and a z-index of 1, but the sidebar div has no z-index or positioning so it's underneath the main content by default. You can bring that desktop sidebar div to the front by adding a z-index of 2 and relative positioning with CSS. Try adding this CSS code in your View or Content Template in one of the CSS editor panels:

.single-post.et_divi_builder .c-article__sidebar--lg {
  position:relative;
  z-index:2;
}

You may need to clear the theme's CSS cache and/or rebuild your CSS if you minify and concatenate CSS files using Divi's optimization tools, then clear your browser cache to see the updates. Let me know if it needs any tweaks after that change.

#2075163

My issue is resolved now. Thank you!