Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jun 15, 2011 #2 1. In the CSS file /content/themes/Peafowl/style.css add position: relative; to #in-foot, it should look like this: CSS: #in-foot { clear: both; padding: 25px; overflow: auto; position: relative; } 2. Open /content/themes/Peafowl/footer.php and search for: HTML: <a href="http://chevereto.com/" target="_blank" id="powered">Powered by <img src="<?php echo show_theme_imgdir(); ?>chevereto.gif" alt="Chevereto" /></a> Add below: HTML: <span style="position: absolute; right: 0; top: 50px; margin-right: 25px">hosting 1452 files</span> The <span> can be a <div> or anything, the style can be by CSS or inline HTML like my code which was made using firebug. Hope it helps Regards
1. In the CSS file /content/themes/Peafowl/style.css add position: relative; to #in-foot, it should look like this: CSS: #in-foot { clear: both; padding: 25px; overflow: auto; position: relative; } 2. Open /content/themes/Peafowl/footer.php and search for: HTML: <a href="http://chevereto.com/" target="_blank" id="powered">Powered by <img src="<?php echo show_theme_imgdir(); ?>chevereto.gif" alt="Chevereto" /></a> Add below: HTML: <span style="position: absolute; right: 0; top: 50px; margin-right: 25px">hosting 1452 files</span> The <span> can be a <div> or anything, the style can be by CSS or inline HTML like my code which was made using firebug. Hope it helps Regards
Gatses Chevereto Member Jun 16, 2011 #3 Thank you. Now there is another question. No way to remove the scroll?
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jun 16, 2011 #4 On #in-foot add this declaration: CSS: overflow: hidden;