Issue
şimdiden teşekür ederim. how do i add a picture here? How can I install a thumbnail there? is there a shortcode.
Solution
It's called a favicon.
You need to generate a .ico-File and put them into your project directory. Here is a simple generator: https://www.icoconverter.com
Then you can add the following code into your <head>
element, next to your <title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
Make sure you name the generated file favicon.ico
.
This way most browsers will support it!
Answered By - Sivery Answer Checked By - David Goodson (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.