• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Place element below the "powered by" logo

Status
Not open for further replies.

Gatses

Chevereto Member
Tell. How to insert counter here?
8zdjv.png
 
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
 
Status
Not open for further replies.
Back
Top