Posts by Bianca Decoló • 69 points
9 posts
-
0
votes1
answer44
viewsA: Different image colors when applied in a <video> tag
What can it be: The referenced video is not in good quality; (you said that’s not it) You applied some filter to the video parent element or to the video itself; The video is in good quality but for…
-
1
votes1
answer720
viewsA: How to customize emojis (Unicode) of a page?
Yes! There’s a way. As you probably already know, each source brings us a different kind of emoji. You can search which source matches the kind of emoji you want and do it: @font-face { font-family:…
-
-2
votes1
answer1430
viewsA: Calling another page with a form action
Dude, ideally you put the path from the file you are editing and not from the root! ie if you have folders behind, .. /.. /folder/file/.php if you are in the same folder, .php file. you don’t need…
-
1
votes1
answer152
viewsA: What are Evergreen Browsers? Does this philosophy also apply to system development?
Dude, I studied to help you and what I found was: The term "Evergreen" refers to the launch strategy. Evergreen browsers are updated frequently in the background, constantly updating their…
-
1
votes5
answers102
viewsA: doubt about select in css
use "padding". padding: 5px 5px 5px 5px; top, right, bottom and left is the order of padding rules. If you don’t want to abbreviate, use: padding-top: 5px; padding-right: 5px; padding-bottom: 5px;…
-
-1
votes2
answers123
viewsA: How to know percentage of animation in CSS
So you can make your animation from the beginning. Check it out: @-webkit-keyframes bounce { from, 20%, 53%, 80%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);…
-
0
votes2
answers75
viewsA: I cannot insert the data into the sql table with a form
Do the following. Make a page with the code to insert separately, with for example the name "Insert.php" In the form, put in the "action" this <form name="registodados" method="POST"…
-
0
votes2
answers65
viewsA: Return user’s company using the matricula
Can you work on the base code? If yes, you can try using Join. Type: select nome from tbl_empresa e join tbl_usuario u on u.empresa_id = e.id; Replacing, of course, the table names. Otherwise, if…
advplanswered Bianca Decoló 69 -
0
votes1
answer168
viewsQ: How to change the /wp-admin directory - without the WPS Hide plugin
You guys, good morning. I need to change the admin area of my wordpress site out of wp-admin, creating another link with the name I want. What I get is that I’m not in the mood for prying looking…