@asoto41
1) You can modify how logo is shown in style sheet of theme
oc-content/themes/sofia/style.css
2) Facebook connect is free plugin delivered with theme, no support on these plugins is provided. You can try different version
3) With saving email there is bug.
Go to file oc-content/themes/sofia/functions.php
Find line:
osc_set_preference('keyword_placeholder', Params::getParam('keyword_placeholder'), 'sofia_theme');
Replace with:
osc_set_preference('keyword_placeholder', Params::getParam('keyword_placeholder'), 'sofia_theme');
osc_set_preference('contact_email', Params::getParam('contact_email'), 'sofia_theme');
Then in same file find line:
osc_set_preference('keyword_placeholder', __('ie. PHP Programmer', 'sofia'), 'sofia_theme');
Replace with:
osc_set_preference('keyword_placeholder', __('ie. PHP Programmer', 'sofia'), 'sofia_theme');
osc_set_preference('contact_email', __('[email protected]', 'sofia'), 'sofia_theme');
To show it in footer, go to file:
oc-content/themes/sofia/footer.php
Find line:
<div class="element"><a href="<?php echo osc_contact_url(); ?>"><?php _e('Contact', 'sofia'); ?></a></div>
Replace with:
<div class="element"><a href="<?php echo osc_contact_url(); ?>"><?php _e('Contact', 'sofia'); ?></a></div>
<?php if(osc_get_preference('contact_email', 'sofia_theme') <> '') { ?><div class="element"><?php echo osc_get_preference('contact_email', 'sofia_theme'); ?></div><?php } ?>