Hi, I have a similar problem with Enfold theme like nokostudio (with Eunoia theme) :
I am trying to extend the socket background image to cover the entire browser window width.
What is the proper approach to do this ?
Regards.
Jean
Hi,
in footer.php search for following code:
<div class='container_wrap socket_color' id='socket'>
<div class='container'>
<span class='copyright'>© <?php _e('Copyright','avia_framework'); ?> - <a href='<?php echo home_url('/'); ?>'><?php echo get_bloginfo('name');?></a><?php echo $kriesi_at_backlink; ?></span>
<?php
echo "<div class='sub_menu_socket'>";
$args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
wp_nav_menu($args);
echo "</div>";
?>
</div>
<!-- ####### END SOCKET CONTAINER ####### -->
</div>
and move it to the bottom. Insert it above following line:
</body>
Some additional styling (css code) may be required.