Tumgik
#add attribute html
webtutorsblog · 1 year
Text
HTML attributes are an essential component of web development. They provide additional information about HTML elements and allow developers to modify the behavior and appearance of a web page. With Webtutor.dev's comprehensive guide, you'll learn about the different types of HTML attributes and how to use them effectively to enhance your web pages. From class and id attributes to src and href attributes, this guide covers everything you need to know to get started with HTML attributes. You'll also learn how to use data and aria attributes to make your web pages more accessible to users with disabilities. With the knowledge gained from this guide, you can create web pages that not only look great but are also accessible and user-friendly. So, if you're looking to improve your web development skills and create high-quality web pages, check out Webtutor.dev's guide to HTML attributes today!
0 notes
Text
The SHEER AMOUNT of fucking with formatting I had to do to get that post to display legibly on dash.............
5 notes · View notes
izicodes · 7 months
Text
Convert HTML to Image: A Step-by-Step Guide ✨
Tumblr media
Do you want to turn some HTML code you've made that's on your website and have a way to convert it into an image for you to save?
Well, look no further! I too wanted to do the same thing but funny enough, there weren't any straightforward tutorials out there that could show you how! After hours of searching, I finally discovered the solution~!
This is an old tutorial I made 🐼
Tumblr media
💛 Set your environment
Before we dive into the conversion process, I'll assume you already have your HTML code ready. What you want to learn is how to turn it into an image file. You should have a good grasp of HTML and JavaScript. For this tutorial, we'll use the following HTML code example:
Tumblr media
We won't include the CSS code, as it doesn't affect this tutorial. The JavaScript file (script.js) at the bottom of the body element is where we'll add the functionality for the conversion.
Your page should resemble the following:
Tumblr media
As you can see, the "Click me" button will handle the conversion. We aim to convert everything within the div.info-div into an image.
💛 Using the html2canvas JavaScript Library
The html2canvas library allows you to take screenshots of webpages and target specific elements on a screen. Here are the steps to include the library in your project:
The steps to put the library in your project:
Visit the html2canvas website for more information.
Copy the CDN link from here
Tumblr media
and include it in a script tag in your project's head tag in the HTML file:
Tumblr media
That's it for including the library on the HTML side. Now, let's move on to the JavaScript code.
💛 JavaScript Functionality
Here's the JavaScript code to handle the conversion:
Tumblr media
In this code, I want to turn the whole div.info-div into an image, I put it into a variable in const div = document.querySelector(".info-div");.
I also put the button into a variable in const button = document.querySelector("button");
I added a click event listener to the button so when the user clicks the button, it will follow the code inside of the event listener!
You can find similar code like this in the documentation of the html2canvas library:
Tumblr media
What is happening here is:
We add the div (or what the element we want to take an image of) into the html2canvas([element]).then((canvas)
Added the image file type url to a variable = const imageDataURL = canvas.toDataURL("image/png"); - You can replace the png to other image file types such as jpg, jpeg etc
Created an anchor/link tag, added the href attribute to imageDataURL
The download attribute is where we will give the default name to the image file, I added "dog.png"
Perform the click() function to the anchor tag so it starts to download the image we created
And that's it!
💛 The End
And that's it! You've successfully learned how to turn your HTML into an image. It's a great way to save and share your web content in a unique format.
Tumblr media
If you have any questions or need further clarification, please comfortable to ask. Enjoy converting your HTML into images! 💖🐼
Tumblr media
128 notes · View notes
eri-lessthan3 · 1 year
Text
Hey you
all of you complaining about tumblr live
Tumblr media
Seethe and cope 😎
Okay but seriously
Get yourself the Stylus extension For Firefox users: https://addons.mozilla.org/en-GB/firefox/addon/styl-us/ and for everyone else: https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne
Get the Old Tumblr Dashboard Style: https://userstyles.world/style/11286/old-tumblr-dashboard-2023
You should get this stuff even if you don't plan to remove tumblr live :3 Now here is where the magic comes from:
Stylus allows you to add custom css styles to websites, and you can edit themes made by other people to fit your needs!
Tumblr media
See that little fucker? How about we fuckin g kill it?
Press f12 to open the Developer Tools (or however it is called lmao)
Click on this little guy
Tumblr media
Now you can select an element on the website, and it will show where it is in the html!
3. Point
Tumblr media
Click on it, and now we will see something like this in the inspector!
Tumblr media
Collapse a bunch of this stuff, since here we only care about the list items, or <li>
Tumblr media
These are the different buttons in the banner
Now, how do we fucking kill that guy?
There are a number of ways to do this, so let's start with the simplest one
Delete
Just select the list item that has the title "Live" and press delete!
Tumblr media
So it is gone now, right?
Well... not really. If you refresh the page, it is back. Which makes sense, since the only thing we did is remove that part of the "code" (if you can call html "code"), but when we refreshed it, the server gave us a version of the site that obviously had the button still there.
So what is a smarter way to get rid of it?
While you can't really delete a specific part of the site with just css, you can hide it! To do that, all you have to do is apply the style display: none;
Tumblr media
Like that! While it doesn't fix the problem with the refresh, it brings us closer to the solution.
Remember when we got Stylus? yeah!
Go inside of it (😳), and inside the Old tumblr dashboard theme (😳😳), and now we just need to apply the css style of "remove that fucker" to the specific list item. How do we do that, since we can't add it directly into html? We use the attribute selector, and we look for title="Live"!
Where do I write this????
Well, css applies the styles from top to bottom of the style sheet (usually, this post is already too long), and you see how the list item has a few classes assigned to it? It so happens that they also modify the display property, so we have to override it by putting our selector after those in the css sheet... so basically you can just write the thingie at the end 😅
Here is how the attribute selector works!
Tumblr media
the .IYr09 part is that specific class, so that if there is ever something on this page that has the title="Live" but isn't what we are looking for, it won't apply there (You don't need to do this, but whatever). The attribute selector is written in the square brackets, and you just... write the attribute that you are looking for there ;P
(I also did the same for the Explore button, but that can be an exercise for the interested ;P)
And now, BEHOLD
Tumblr media
(How am I so popular that I got dms during the making of this >.&lt;)
And it will stay like this, forever*
*except if something happens to the addon, theme, css of it or whatever, but you get the point!
255 notes · View notes
rabbiteclair · 1 year
Text
actually now I'm wondering if you can use Tumblr's HTML editor to add hover styling or title attributes on link elements, because if you do that you can do some shit
76 notes · View notes
eggdesign · 2 years
Text
Making a featured tags section
Tumblr media
I've gotten a few questions about this, so I'm going to explain how I'm putting together the featured tags section on my (still in progress/yet to be released) dashboard inspired theme.
This uses JS with v1 of the API, the HasPages block in the theme HTML, and some CSS.
Instead of relying on text options for tags, this theme is grabbing pages based on if it is a tag url or not.
Tumblr media Tumblr media
While I technically have 4 links here, /About is not a link to a tag, so it gets removed.
This uses the API similar to how @fukuo did featured posts, but with vanilla JS instead of jQuery. How it works:
Select only the links in the featured tags container that include /tagged/ (using a CSS attribute selector for [href*="/tagged"])
Grab the tag name from the url
Add that tag name to the API url
Use the returned data to add the text, total posts, and any images from the most recent result of that tag
Style/formatting with CSS
I have the JS and CSS here with some comments on what everything is doing so far. I will update this as I make more progress on the theme, so let me know if you run into anything that I need to update!
213 notes · View notes
embed-gif · 2 years
Text
How to embed gifs on Tumblr
Embed ≠ Repost
Example of an embedded gif:
Tumblr media
The attribution “GIF by ______” is linked to the gif maker's original post.
How do we do this?
How do we add gifs into our analysis/review/reaction posts and give credit to the gif makers properly?
(updated: April, 2024)
What We Need
A Computer
Vivaldi Browser*
*It will make things easier.
Things To Do
Get Ready
Insert GIF
Swap GIF
Celebrate 🍻
🧊 GET READY
Tumblr media
Set two windows side by side. Left: the original post Right: Tumblr dashboard
Locate the post which contains the gif we want to use. Make sure we are looking at the original post by the gif maker, not a reblog, or… a repost, so we won't credit the wrong person.
Click “Photo” to create a new post.
Click on the blank space to bring up the tools.
Click “GIF” to open the “🔍 Find a GIF” window.
🧊 INSERT GIF
Tumblr media
Click the ●●● meatballs menu and select “Copy link”.
Right-click on “Find a GIF” and select “Paste”.
Only the first gif from the gifset shows up. It's alright, just select the gif to add it into the post.
🧊 SWAP GIF
Tumblr media
Right-click on the gif we want and select “Copy Image Address”.
Click the ⚙️ cog menu and change the Text Editor from “Rich text” to “HTML”.
Tumblr media
3. Highlight the gif address.
*Ignore the second part of the codes. They will adjust themselves accordingly.
Tumblr media
4. Right-click on the highlighted texts and select “Paste”. 5. Click on “Preview”.
Since the gif dimensions are different from the one that's been replaced, we'll see a stretched gif in the preview. Don't worry about it because Tumblr will fix the codes when we save the post.
🍺 CELEBRATE
Tumblr media
Now we click on the attribution to see if it opens up the original post in a new tab.
Yes, it does. We have successfully embedded the gif we want from the gifset.
Tumblr media
Done!
🍻
Reminder:
Embed gifs from original posts by gif makers, so we won't accidentally credit the reposters.
Click the ⚙️ cog menu and change the Text Editor from “Rich text” to “HTML” to swap gifs from the same gifset.
Inspired by:
kdramaxoxo (2020)
what-breaks-my-heart (2022)
Additional reference:
theywaitforshewho (2016)
mizukiko-kun (2016)
phynali (2018)
95 notes · View notes
Note
Hello! I hope I don't bother you again. I have two questions for you (I think there are more). I'm writing a zosan fanfic and I came up with the idea of ​​putting "titles" in what happens in the "chapters" separated by the divider, like the titles of anime episodes (very One Piece with spoilers about what happens in the episode), I would like to know what do you think of this idea? I have images of what these titles would look like if you want them for better visualization. 2- Is there a skin work on ao3 that imitates these "titles", as if they were chapter titles of a book (but without having to have several chapters as I want to make a oneshot)?
hello! yes, I think that sounds like a neat idea. you should go for it!!
I don't watch one piece so I hope I'm visualizing it right. if I got it wrong, feel free to send me a picture.
anyway. are you trying to do something like this?
Tumblr media Tumblr media
if this is what you're going for, you can try this code out! I also created a pastebin for this one, so you can just copy paste to your own workskin.
Tumblr media
so here, we're creating the lined-title css class. you can just add it to your <p> tags in the html when you want to apply them. e.g.
<p class="lined-title">TITLE</p>
feel free to play around with border-style and the border-color (or any other attribute). you'll want border-style:solid if you just want one single line, for example.
you can also check AO3's FAQ on what colors and fonts you can use. fun fact: border-style:double is the same css they use to add those double lines in the FAQ!
note that this will span the entire width of the page. so if you have a short title, it'll look like this on desktop:
Tumblr media
if you don't want it to span the whole page, we could try this instead (also included in the pastebin link):
Tumblr media
which will result in this:
Tumblr media
however, we can't manipulate the spacing between the text and the lines in this one. on the other hand, it has text-decoration-style:wavy which the first option doesn't have!
for custom scene dividers, you can also check out these guides:
How to Make Customized Page Dividers by La_Temperanza
Dividers & how to style them by skinofthesoul
Rainbow Paragraph Divider by benwvatt
bonus: inspect element
also, are you familiar with inspect element yet? if you are, great! you can just skip this. otherwise, if you're still getting the hang of working with workskins and aren't used to editing css, you can try this:
right click on the text you want to change on AO3, then click "inspect" or "inspect element" (not sure what it's called in browsers these days; on firefox, it's just "inspect"). this will bring up a bunch of developer tools and it kinda looks like this:
Tumblr media
it might look different depending on the browser.
but here on the side, you can see the html on top and css at the bottom. as you can see in the screenshot, we are inspecting the title and we can see the different css rules for the title.
if you want to play around with the css, you can just change them from this panel and it will automatically reflect on the page. these changes are not permanent so it's a good way to test different styles without having to go through the cycle of updating the workskin and refreshing the fic page.
if this is your first time trying this out, it might look overwhelming, but it's very helpful if you get the hang of it. but of course, you don't need to learn how to do this to style your fics. :D
6 notes · View notes
threeletterslife · 9 days
Note
How do you add link on bio 😭👊
You can use an HTML href attribute! Here's the general code:
<a href="insert-your-link">insert-link-title</a>
For example: <a href="www.mywebpage.com">Chana's Site</a>
To add this to your bio go into blog settings > Edit theme > and write the href attribute in your description!
5 notes · View notes
Note
Hello !! just wanted to ask, how do I add an opening sound/background music to a neocities site? I tried adding a music player but it doesn't work!! HTML + Neocities newbie here :'(((
you gotta host your music on a different platform if you don't wanna pay for supporter... i used to use vocaroo because it's easy and simple, but you could easily use file.garden, catbox.moe, or github pages to host direct audio files for free!!
simple audio tag documentation under the cut
the audio tag has specific attributes that you can set to get autoplay to work! on my site, my autoplaying audio is called with this tag:
<audio autoplay src=/audio/siteopen2.mp3 id=startaudio></audio>
src works the same as image sources (e.g. src=/UGH.mp3), and the autoplay attribute makes it... play automatically. if the end user allows their browser to play audio automatically.
the id is just for some javascript shit i think... i don't remember what though
something to note: default browser controls only show up if you specify controls as an attribute, and you can control audio tags with javascript! don't like the fuggly chrome default! audio! thing??? don't use it!!!!!
psttt... check out all of the audio tag's attributes here!
2 notes · View notes
phantasyreign · 2 years
Text
Tutorial: Creating a Modal/Popup using <dialog>
Tumblr media
In this tutorial, I'll be sharing with you on how to create a popup/modal (herein states as modal) using <dialog>. Base code shall be provided for you to practise. Also, while it is rather a straightforward tutorial, it is recommended for you to have some knowledge of CSS and HTML as I will assume that you know a little bit about them.
[DEMO] [BASE CODE]
To create a modal, there are five parts that I'll be explaining which are:
The script
The open button
The modal + the close button
The backdrop
The Fade effect [Optional]
1. The Script
To ensure that your modal works, we need to add a script into our code. All you need to do is copy the code below and paste it before </body>:
<script> /// MODAL SCRIPT BY JASMIN @ https://phantasyreign.tumblr.com/ const body = document.querySelector("body"); const popup = document.querySelector("#modal"); const openModal = document.querySelector(".open-modal"); const closeModal = document.querySelector(".close-modal"); openModal.addEventListener("click", () => { modal.showModal(); body.style.overflow = "hidden"; }); modal.addEventListener("keydown", e => { if(e.keyCode === 27){ e.preventDefault() } }) closeModal.addEventListener("click", () => { modal.close(); body.style.overflow = "auto"; }); </script>
This script tells us three things:
When you click the open button, the modal will appear and you cannot scroll down the contents behind the modal;
When you press the esc key, it won't work;*
When you click the close button, the modal will disappear and you can scroll the blog as per usual.
*The reason why I include this part is because in the event if the blog contains a scroll bar, if a person press the esc key instead of clicking the close button, such scroll bar will not appear.
2. The Open Button
HTML
To add an open button, simply add the code below and paste it at the desired placement:
<button class="button open-modal">Open Modal</button>
Tips: If the design of your open and close button are the same, then I recommend if you include another class value of button inside your class attribute so that it'll be easier for you to code.
TAKE NOTE: Do not change the name of the open-modal.
CSS
If you know CSS, there are many ways to code a button. Nevertheless, for the purpose of this tutorial, I have customised the button (both the open and close button) as follows:
.button{ /*BASIC*/ background-color:white; border:1px solid #eee; border-radius:inherit; width:100px; outline:0; padding:.25rem .5rem; /*FONTS*/ font-family:karla; text-transform:uppercase; /*DO NOT TOUCH UNLESS YOU KNOW WHAT YOU'RE DOING*/ cursor:pointer; }
You can also use .open-modal instead of .button if you want to.
3. The Modal + The Close Button
HTML
To create the modal, we will be using <dialog>. To achieve it, we need to add the HTML before </body> and the <script>. Don't worry if you're confused, you can refer back to the base code to understand what I mean by before </body> and the <script>.
<dialog id="modal"> <p>This is your content <button class="button close-modal"> Close Modal </button> </dialog>
Depending on where you want to position your close button, you may need to change the position of your close button's HTML code before or after the content.
CSS
By default, the modal will not be shown without the open button and the script. However, since we have included the script as well as the open button, you can see that once you click the open button, the modal appears! To beautify it a little bit more, you can customise the modal as follow:
/*MODAL CONTENT*/ #modal{ /*BASICS*/ width:50%; background:rgb(238 238 238 / 0.9); border:1px solid lightyellow; border-radius:10px; padding:1rem 2rem; outline:0; /*DO NOT TOUCH UNLESS YOU KNOW WHAT YOU'RE DOING*/ max-height:50vh; overflow:auto; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); }
For the close button, feel free to use your own creativity to customise it! You can also use the same design as your open button as what you've seen inside the demo. If the position of your close button is the same as what has been shown in the demo, to center it, I added the following code:
.close-modal{ margin:0 auto; display:block; }
4. The Backdrop
We can think of backdrop as something similar as a lightbox in a photoset. By default, you can see that when a modal is opened, everything except for the modal turns darker. To customise the said backdrop, all you need to do is add this code:
/*MODAL BACKGROUND*/ #modal::backdrop{ backdrop-filter:blur(10px); background:rgb(238 238 238 / 0.25); }
Of course, you can also add background image and the likes if you know how to do so.
The Fade Effect [Optional]
In order to create the fade effect, we need to use the animation property. As such simply add the following code inside #modal and #modal::backdrop:
animation:1s fade ease-in-out;
As such, the both codes will look like this:
/*MODAL CONTENT*/ #modal{ /*BASICS*/ width:50%; background:rgb(238 238 238 / 0.9); border:1px solid #eee; border-radius:10px; padding:1rem 2rem; outline:0; /*DO NOT TOUCH UNLESS YOU KNOW WHAT YOU'RE DOING*/ max-height:50vh; overflow:auto; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); animation:1s fade ease-in-out; } /*MODAL BACKGROUND*/ #modal::backdrop{ backdrop-filter:blur(10px); background:rgb(238 238 238 / 0.25); animation:1s fade ease-in-out; }
After that, add this code after #modal::backdrop :
@keyframes fade{0%{opacity:0;}50%{opacity:1;}}
With that, you're done! Please like and/or reblog this if you found this tutorial helpful! Kindly credit me if you use this tutorial :)
68 notes · View notes
bloodyboybreakdowns · 5 months
Text
Google Search Console may show more breadcrumb warnings
Google has updated its breadcrumbs rich results report within Google Search Console to potentially show more warnings and notices around structured data issues with your breadcrumb markup. This update started on June 8, 2023 and may result in an increase in the number of warnings that show in that report.
What Google wrote. Google posted the update and said:
“Search Console started to show a warning when sites use the HTML id attribute to specify an ID for Breadcrumb structured data. As a result, you may see an increase in warnings in your Breadcrumb report. See the Breadcrumb documentation for more information on how to specify IDs.”
Google Search breadcrumb. A breadcrumb in Google search is when Google shows the path of where the page is located within the site directly in the search results snippets. “A breadcrumb trail on a page indicates the page’s position in the site hierarchy, and it may help users understand and explore a site effectively,” Google wrote.
Why we care. You may want to check out the breadcrumbs report in Search Console to see if there are any new warnings or errors showing up. You can then decide if you want to address those warnings and resolve any issues that Google may have reported on.
Add Search Engine Land to your Google News feed.    
Related stories
New on Search Engine Land
<![CDATA[ @media screen and (min-width: 800px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:770px; min-height:260px; @media screen and (min-width: 1279px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:800px!important; min-height:440px!important; ]]>
About the author
Barry Schwartz a Contributing Editor to Search Engine Land and a member of the programming team for SMX events. He owns RustyBrick, a NY based web consulting firm. He also runs Search Engine Roundtable, a popular search blog on very advanced SEM topics. Barry can be followed on Twitter here.
Read more here https://sites.google.com/view/gorilladigitalseo/services/social-channels-management
3 notes · View notes
cssscriptcom · 5 months
Text
Beginner-Friendly JavaScript Form Validation Library - Trivule
Trivule is a JavaScript library designed to simplify form validation. It’s perfect for both beginners and experienced developers. You can quickly add validation rules to form fields using simple HTML attributes. There is no need to write complex JavaScript code from scratch; Trivule takes care of it for you. Trivule provides real-time feedback as users fill out the form fields. You can validate…
Tumblr media
View On WordPress
4 notes · View notes
rainfestive · 5 months
Text
Google Search Console may show more breadcrumb warnings
Google has updated its breadcrumbs rich results report within Google Search Console to potentially show more warnings and notices around structured data issues with your breadcrumb markup. This update started on June 8, 2023 and may result in an increase in the number of warnings that show in that report.
What Google wrote. Google posted the update and said:
“Search Console started to show a warning when sites use the HTML id attribute to specify an ID for Breadcrumb structured data. As a result, you may see an increase in warnings in your Breadcrumb report. See the Breadcrumb documentation for more information on how to specify IDs.”
Google Search breadcrumb. A breadcrumb in Google search is when Google shows the path of where the page is located within the site directly in the search results snippets. “A breadcrumb trail on a page indicates the page’s position in the site hierarchy, and it may help users understand and explore a site effectively,” Google wrote.
Why we care. You may want to check out the breadcrumbs report in Search Console to see if there are any new warnings or errors showing up. You can then decide if you want to address those warnings and resolve any issues that Google may have reported on.
Add Search Engine Land to your Google News feed.    
Related stories
New on Search Engine Land
<![CDATA[ @media screen and (min-width: 800px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:770px; min-height:260px; @media screen and (min-width: 1279px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:800px!important; min-height:440px!important; ]]>
About the author
Barry Schwartz a Contributing Editor to Search Engine Land and a member of the programming team for SMX events. He owns RustyBrick, a NY based web consulting firm. He also runs Search Engine Roundtable, a popular search blog on very advanced SEM topics. Barry can be followed on Twitter here.
Read more here https://sites.google.com/view/gorilladigitalseo/services/social-channels-management
3 notes · View notes
louinthekitchen · 5 months
Text
Google Search Console may show more breadcrumb warnings
Google has updated its breadcrumbs rich results report within Google Search Console to potentially show more warnings and notices around structured data issues with your breadcrumb markup. This update started on June 8, 2023 and may result in an increase in the number of warnings that show in that report.
What Google wrote. Google posted the update and said:
“Search Console started to show a warning when sites use the HTML id attribute to specify an ID for Breadcrumb structured data. As a result, you may see an increase in warnings in your Breadcrumb report. See the Breadcrumb documentation for more information on how to specify IDs.”
Google Search breadcrumb. A breadcrumb in Google search is when Google shows the path of where the page is located within the site directly in the search results snippets. “A breadcrumb trail on a page indicates the page’s position in the site hierarchy, and it may help users understand and explore a site effectively,” Google wrote.
Why we care. You may want to check out the breadcrumbs report in Search Console to see if there are any new warnings or errors showing up. You can then decide if you want to address those warnings and resolve any issues that Google may have reported on.
Add Search Engine Land to your Google News feed.    
Related stories
New on Search Engine Land
<![CDATA[ @media screen and (min-width: 800px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:770px; min-height:260px; @media screen and (min-width: 1279px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:800px!important; min-height:440px!important; ]]>
About the author
Barry Schwartz a Contributing Editor to Search Engine Land and a member of the programming team for SMX events. He owns RustyBrick, a NY based web consulting firm. He also runs Search Engine Roundtable, a popular search blog on very advanced SEM topics. Barry can be followed on Twitter here.
Read more here https://sites.google.com/view/gorilladigitalseo/services/social-channels-management
5 notes · View notes
thequeenofharakiri · 7 months
Text
Google Search Console may show more breadcrumb warnings
Google has updated its breadcrumbs rich results report within Google Search Console to potentially show more warnings and notices around structured data issues with your breadcrumb markup. This update started on June 8, 2023 and may result in an increase in the number of warnings that show in that report.
What Google wrote. Google posted the update and said:
“Search Console started to show a warning when sites use the HTML id attribute to specify an ID for Breadcrumb structured data. As a result, you may see an increase in warnings in your Breadcrumb report. See the Breadcrumb documentation for more information on how to specify IDs.”
Google Search breadcrumb. A breadcrumb in Google search is when Google shows the path of where the page is located within the site directly in the search results snippets. “A breadcrumb trail on a page indicates the page’s position in the site hierarchy, and it may help users understand and explore a site effectively,” Google wrote.
Why we care. You may want to check out the breadcrumbs report in Search Console to see if there are any new warnings or errors showing up. You can then decide if you want to address those warnings and resolve any issues that Google may have reported on.
Add Search Engine Land to your Google News feed.    
Related stories
New on Search Engine Land
<![CDATA[ @media screen and (min-width: 800px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:770px; min-height:260px; @media screen and (min-width: 1279px) #div-gpt-ad-3191538-7 display: flex !important; justify-content: center !important; align-items: center !important; min-width:800px!important; min-height:440px!important; ]]>
About the author
Barry Schwartz a Contributing Editor to Search Engine Land and a member of the programming team for SMX events. He owns RustyBrick, a NY based web consulting firm. He also runs Search Engine Roundtable, a popular search blog on very advanced SEM topics. Barry can be followed on Twitter here.
Read more here https://sites.google.com/view/gorilladigitalseo/services/social-channels-management
3 notes · View notes