Posts by jim • 165 points
12 posts
-
-1
votes2
answers168
viewsQ: How to make a single meta Description and meta Keywords in a PHP document that only has 1 header for all pages
Recently I learned how to leave a static site a little dynamic, putting the footer and header in a single document for all pages. But for each page I need a different meta Description and meta…
-
1
votes3
answers840
viewsQ: How to set a limit of 4 images per line?
I want to place a row of 4 images with a small text below each image, I already know how to do this, but I have many images and I need each row to have a maximum of 4 images. I tried to do this…
-
0
votes1
answer36
viewsQ: Compatibility problem with Chrome and IE, warped text
Chrome: IE: On mozzarella: It would be right to look like this on Mozilla. On Chrome and IE it is not right. I put the text on top of the image using this script: CSS: .img-containerAside{ width:…
-
0
votes1
answer59
viewsQ: A display:flex property is bugging my image
The problem is in align-items: flex-end. After I added this line, along with the display: flex. My image increases by 4px at the bottom when I hover over. And I don’t know why it happens, I need to…
-
4
votes1
answer4550
viewsQ: How to zoom in on the image when the mouse hovers over it?
Like the one on that site -> https://flamengomaior.com.br/ A smooth zoom made from this site. What is the simplest way to do this? If possible in CSS/Html.…
-
1
votes2
answers63
viewsQ: How do I make a text that recently adds to the code stand at the top of the page?
Look at this example code: <article> <div> <ul> <li> </li> <li> </li> <li> </li> <li> </li> </ul> In my code inside each li…
-
3
votes2
answers93
viewsQ: Do you really need to specify the HTML element before the class in the selector of a CSS rule?
I don’t know if that’s true for everyone, but the only element I’m interested in is <div>. For example: div.classe1 { /*...*/ } .clase1 { /*...*/ } What is the difference between the two…
-
0
votes1
answer3088
viewsQ: How to align a photo in the center of the page?
I know that to align a text you use the text-align: center. But to align a photo that has a link in it? I did some tests here with some commands that I n know like the align-content, to see if it…
-
1
votes1
answer138
viewsQ: Vertical scroll bar
My site has a scroll bar just below Footer. #main { display: -ms-grid; display: grid; grid-template-areas: "header header" "nav nav" "content aside" "footer footer" "privacidade privacidade"; }…
-
-1
votes1
answer386
viewsQ: Html, doubt about compatibility with Internet Explorer
I don’t know why but my site gets broken in Internet Explorer and Microsoft Edge. Ja in Firefox, Google Chrome and Opera Web the site gets normal. The only parts of the site that are broken are…
-
-1
votes2
answers406
viewsQ: Doubt about HTML regarding the alt=" command
The thing is, my image is not showing the text I put in alt=" when I put the mouse on top. <!DOCTYPE html> <html> <head> <title>teste</title> </head> <body>…
-
0
votes1
answer521
viewsQ: How to put a. php pagination script on my website?
I’ve already built a website, but I’m having trouble with the paging system. I don’t know how to handle php, I found some videos on youtube and got a script of php pagination. Now I need to put this…