Didi Theme Page Block Help

  • Unknown's avatar

    Hi There, I’m working on my site, keytalentconsulting.com using the Didi theme. Since I switched the front page template from Default Template to Front Template, I’m now seeing HOME and a dark page background on the main content. I had originally coded to not see the page titles on the page. I want to get rid of the dark page background (it’s black) and the HOME title. Any help would be greatly appreciated!

    The blog I need help with is: (visible only to logged in users)

  • Hi
    I think the following will deal to the black background:

    .overlay {
    	opacity: 0;
    }

    The huge HOME title can be removed using this:

    .wf-active .front-page-content h2:first-child {
    	display: none;
    }

    and then the space left can be reduced using this:

    .cd-fixed-bg {
    	padding: 0px 20px;
    }

    You will need a premium plan so you can add these snippets to the Additional CSS in the theme customizer.

    I hope that helps.

  • Unknown's avatar

    This worked great!

    Now the problem is that the body text (not the headers) is large and bolded. I’ve tried editing it in the actual “post” but to no effect. Any way to fix this as well?

  • Unknown's avatar

    Ok, I actually fixed the text issue, but now I’m having an issue with the boxes in my Testimonial section being cut off. Is there a fix for that?

  • This might do it:

    .frontpage .posts.clearfix.customwidget.columns {
    	margin-bottom: 60px;
    	height: auto;
    }

    It’s not very elegant since the margin-bottom is set to work with the current content of the testimonial so might need tweaking if you add a longer one but it’s a good start.

  • Unknown's avatar

    Ok, perfect! Thank you for all your help!

  • No problem.
    It’s a pleasure to help.

  • The topic ‘Didi Theme Page Block Help’ is closed to new replies.