Hello, Can you provide me with some Quick CSS that will allow me to add an image to the background of the small top menu above the Logo area in Enfold. I’m able to add a background color, but now I would like to add a custom patterned background JPG.
Thanks for your help. – Gary
Hey alliancepp,
Please try adding this at the very end of your themes / child themes functions.php file:
Replace the image path in the below code and use it.
function insert_xtra(){
?>
<script>
jQuery(document).ready(function(){
jQuery('.logo').prepend('<img id="theImg" src="http://domain.com/img.jpg" />');
});
</script>
<?php
}
add_action('wp_head', 'insert_xtra');
Best regards,
Vinay