Site icon - how to set it?

Got something cool to share with AppGini users? Feel free to post it here!
Post Reply
netica
Posts: 9
Joined: 2015-03-03 13:07

Site icon - how to set it?

Post by netica » 2015-05-20 06:42

Hi, I have upload favicon.ico to public_html folder but it didn't set as website icon.
How to set it? Is it some bug or just I should upload icon file somehere else?

Thanks in advance.

netica
Posts: 9
Joined: 2015-03-03 13:07

Re: Site icon - how to set it?

Post by netica » 2015-05-20 08:37

OK I work it out.... here is solution:
- upgrade AppGini to 5.40
- make icon in PNG format, name it appgini-icon.png
- upload it to your public folder to \resources\images (overwrite old one)
- that's all ...don't forget to clear you browser data to see your new icon

Hope it will be usefull...
Greg

TheNoLifer
Veteran Member
Posts: 67
Joined: 2015-06-06 12:10

Re: Site icon - how to set it?

Post by TheNoLifer » 2015-06-21 02:14

Nice. Had me stumped for a while! Thanks for sharing.

User avatar
lordcenon
Posts: 3
Joined: 2013-06-12 04:53
Location: Papua New Guinea
Contact:

Re: Site icon - how to set it?

Post by lordcenon » 2015-06-22 12:12

That was cool
But I have an extra question?
How do I move the logo from the Sign on screen, likfe 1 inch to the right and how can I put a short 3 words below the logo, or is it possible?

Thanks for any ideas.

peebee
AppGini Super Hero
AppGini Super Hero
Posts: 352
Joined: 2013-03-21 04:37

Re: Site icon - how to set it?

Post by peebee » 2015-06-22 23:08

Login screen - all edited in login.php Some custom CSS might need to be added, depending on what you are wanting to achieve.

To add some text to the login screen (with a <h1> heading):
Create a new <div class="form-group"> immediately below <div class="panel-body"> like this

Code: Select all

<div class="panel-body">
    <h1>Your App Heading</h1>
    <div class="form-group"><p>This is where you enter he text you would like to add to your application.</p></div>
</div>
To center the login panel, change:

Code: Select all

<div class="col-sm-6 col-lg-8" id="login_splash">
to

Code: Select all

<div class="col-sm-3 col-lg-4" id="login_splash">
Logo on the login screen? I didn't know there was a logo generated on the login screen by default? Maybe in V5.41 which I haven't installed yet? In any case, to move an image to the right, just add simply some CSS styling to the <img> or surrounding <div> tag. style="margin-left; 20px;" will do the job. Here is some hints: http://www.inmotionhosting.com/support/ ... images-css

User avatar
lordcenon
Posts: 3
Joined: 2013-06-12 04:53
Location: Papua New Guinea
Contact:

Re: Site icon - how to set it?

Post by lordcenon » 2015-06-24 11:52

thanks for sharing

i made my own version but forgot where i posted it

artemisia
Veteran Member
Posts: 59
Joined: 2013-10-01 15:50

Re: Site icon - how to set it?

Post by artemisia » 2020-01-08 22:24

I am also attempting to reset the default site or tab icon, AG 5.81. Tried the method mentioned above:
- make icon in PNG format, name it appgini-icon.png
- upload it to your public folder to \resources\images (overwrite old one)

This does not work. Verified that image file is correct format, etc. I can only see the default AG icon, pale blue with yellow bolt.

Is there an update for the latest AG?

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1635
Joined: 2018-04-01 10:12

Re: Site icon - how to set it?

Post by pbottcher » 2020-01-08 22:52

Hi,

did you clear your browser cache? As this should work.
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

artemisia
Veteran Member
Posts: 59
Joined: 2013-10-01 15:50

Re: Site icon - how to set it?

Post by artemisia » 2020-01-21 18:32

Problem was a combination of cache + malformed icon image (that I thought was good). Now working as expected.

Post Reply