Hello @Mang,
1. Add a Search Bar to search through the help topics? Similar to your Help Topic Page.
- This will require custom PHP coding that returns custom filtered search results. Be advised that this is already considered a custom development which is beyond the scope of our support already. You may need to seek help from 3rd party developers.
2. Remove the arrows on the sidebar. Please see attached.
- The arrows were displayed using this built-in CSS.
.widget_nav_menu ul li a:before, .widget_meta ul li a:before, .widget_pages ul li a:before {
content: "";
padding-right: .4em;
}
If you ever want to completely get rid of it, simply use the code above and set a display: none;
property so that it will not display. Therefore, adding this modified CSS in Pro > Theme Options > Custom CSS should remove the arrows:
.widget_nav_menu ul li a:before,
.widget_meta ul li a:before,
.widget_pages ul li a:before {
display: none;
}
3. Increase the font size of the text. Please see attached.
- You added your content using the Content Area element. The content area does have any text format option. To be able to increase the font size, please find the “Customize” tab in your content area settings:
And then insert this element CSS:
$el {
font-size: 1.2em;
}
Feel free to increase or reduce the font size of the Content Area element.
Best Regards.