-
Slideshow
Thank you for your response.
-
MarkStrobel33 started following Training/Registration html code , Slideshow , Full Screen Video and 1 other
-
Slideshow
How can I increase the number of slides using this slideshow code, https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_slideshow_auto? Thanks.
-
Full Screen Video
Thank you for your response.
-
Full Screen Video
How can I get this code to work on my New Google Site, https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_fullscreen_video? When I embed this code, the video doesn't display. Thanks.
-
Zoom on Hover
Thank you all for your responses.
-
Zoom on Hover
I have limited knowledge about html coding. How can I replace the green box with an image on this code, https://www.w3schools.com/howto/howto_css_zoom_hover.asp? Thanks.
-
Training/Registration html code
Does anyone have a training registration html code similar to this one, https://awesome-table.com/-L7egLSfkCF-Lvngunw1/view? I really like this table from Awesome Tables. However, this table is slow to load and isn't responsive in that it doesn't go vertical when viewed from a mobile device. Thanks.
-
Responsive Table Html Code Request
Thank you so much for your responses. I am now using a different table that better meets my needs.
-
Font Style and Size Change
Thank you so much for your responses. This issue is now fixed.
-
Font Style and Size Change
I built a site using the New Google Sites. It appears that the standard text is Roboto. The font size appears to be between 4 and 5. I have been using the following code to adjust the default font style and size <font face="Roboto" font size="4"> in embedded code snippets for html. However using 4 makes the text smaller and using 5 makes the text bigger than the default text in the New Google Sites. What code do I need to make the text size the same? Thanks.
-
Responsive Table Html Code Request
Thank you for your response. How can I combine the html and css into one coding? I tried combining them by inserting the css code below the html and it isn't rendering correctly. I built a New Google Site. So, I can embed both html and css codes, but they need to be combined into one code.
-
Responsive Table Html Code Request
I am looking for a responsive table html code where I can adjust the column widths and cell colors. Basically, I would like the table to consist of 4 columns and 7 rows with the left side column wider than the rest. Is any one aware of how I can accomplish this? Thanks.
- Enlarge Images When Mouse Hover
-
Enlarge Images When Mouse Hover
Thank you for your response. I was looking at something more like: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=10"> <style> * { box-sizing: border-box; } .zoom { padding: 50px; background-color: green; transition: transform .2s; width: 200px; height: 200px; margin: 0 auto; } .zoom:hover { -ms-transform: scale(1.5); /* IE 9 */ -webkit-transform: scale(1.5); /* Safari 3-8 */ transform: scale(1.5); } </style> </head> <body> <h1>Zoom on Hover</h1> <p>Hover over the div element.</p> <div class="zoom"></div> </body> </html> The problem with this code is that I cannot figure out how to replace the green box with an image. My site was built with the New Google Sites. To my knowledge, there is no CSS file on my site, at least not one that I have access to. So, I really don't know where the insert the css code on my site.
- Enlarge Images When Mouse Hover