Hi Leonor
Hopefully, you’ve made some progress since posting.
Logo
Please, see our documentation on this topic: https://purothemes.com/documentation/ultra-theme/customizer/theme-settings/header/#heading-adding-a-logo. That should help.
Custom Colors
Unfortunately, the full set of color controls is only included in Ultra Premium.
I’ll do what I can to help with TinyMCE Advanced. Here is a tutorial I found: https://digitalmyway.co.uk/2013/05/custom-colour-palettes-in-tinymce-with-wordpress/.
It’s worth noting this is more of an advanced task. How you could add the suggested function is by first installing a plugin called Code Snippets. Plugins > Add New, search for Code Snippets, install and activate. Then, go to Snippets > Add New, name your snippet any name and insert the suggested code in the body, for example:
function dmw_custom_palette( $init ) {
$custom_colours = ' "111111", "Dark Grey", "555555", "Mid Grey", "CCCCCC", "Light Grey", "3366FF", "Blue" ';
$init['textcolor_map'] = '['.$custom_colours.']';
return $init;
}
add_filter( 'tiny_mce_before_init', 'dmw_custom_palette' );
Enable the option to run the snippet in the Administration area and then click Save changes and activate.
I haven’t done this before or used this plugin before but am advising based on the link tutorial above. Hope that helps ??