Arrow that won't go away in Content Doc/Footer

Hi folks,

Needed some help. There is an arrow that gets added to the title of a text widget I created to go into the footer and again in the content doc.

Here are 2 screenshots that explains what I mean.

In the above screenshot, you can see the footer with an arrow next to “Get Clarity Weekly”. I have no idea where that arrow came from. How do I remove it, or alternatively change it?

Similarly, here is the content dock. Note that I did not copy/paste the widget from above but created a new text widget and put it under the Content Dock. There is no indication of where this arrow comes from in the Title.
.

Edit: not sure why the full image above is not showing. Here is the link to it directly.

Finally, I notice that at the very bottom of the content dock, the “don’t show again” section is in black. How can I change this to match the text color of the rest of the content dock? I already checked inside the settings and I have definitely set the right colors in there.

Thank you.

Hi Dhawal,

The arrow is part of the integrity stack. We can remove it using custom CSS. Please try adding it on Theme Options > Global CSS

.widget_text .h-widget:before {
    content: "";
}

Unfortunately, I did not see the content dock? Where is it?

You can check the following guide on how to inspect the element:

Our newest documentation are also live now. Please check it here: https://theme.co/docs

Here is the link to the content dock image: http:///tco-forum-uploads.s3.amazonaws.com/original/3X/7/9/797f5ca0d438fa6b71ef4229e2bf3500f10b2a37.png

For some reason it does not show the full screenshot that I pasted above. Hopefully the link works.

Hello Dhawal,

This custom css is added in the custom css:

.widget_text .h-widget:before {
    content: "\f054";
    padding-right: 0.4em;
    font-size: 0.925em;
}

Please remove this code. If nothing is helping, provide us access to your site so that we can check your settings. Please create a secure note with the following info:
– Link to your site
– WordPress Admin username / password

To know how to create a secure note, please check this out: https://theme.co/apex/forum/t/how-to-get-support/288

Best Regards.

Thanks, that took care of the arrow issue. However, I still cannot solve the issue of the “do not show again” text in the content dock using a different color to display the text. You will note in the screenshot that it is in black, while the rest of the text is in white. Here’s a link to the screenshot: tco-forum-uploads.s3.amazonaws.com/original/3X/0/0/0062d96a42cfaf1fdc9da92887618974045c5460.png

See screenshot.

Hello Dhawal,

The “Do not show again” text is coming from the global theme options. If you want to change the color to a custom one, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.tco-content-dock {
    color: red;
}

Feel free to change the color.

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