1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719
|
<!DOCTYPE html><html lang="en-US">
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>class RocketLazyLoadScripts{constructor(){this.v="1.2.3",this.triggerEvents=["keydown","mousedown","mousemove","touchmove","touchstart","touchend","wheel"],this.userEventHandler=this._triggerListener.bind(this),this.touchStartHandler=this._onTouchStart.bind(this),this.touchMoveHandler=this._onTouchMove.bind(this),this.touchEndHandler=this._onTouchEnd.bind(this),this.clickHandler=this._onClick.bind(this),this.interceptedClicks=[],window.addEventListener("pageshow",t=>{this.persisted=t.persisted}),window.addEventListener("DOMContentLoaded",()=>{this._preconnect3rdParties()}),this.delayedScripts={normal:[],async:[],defer:[]},this.trash=[],this.allJQueries=[]}_addUserInteractionListener(t){if(document.hidden){t._triggerListener();return}this.triggerEvents.forEach(e=>window.addEventListener(e,t.userEventHandler,{passive:!0})),window.addEventListener("touchstart",t.touchStartHandler,{passive:!0}),window.addEventListener("mousedown",t.touchStartHandler),document.addEventListener("visibilitychange",t.userEventHandler)}_removeUserInteractionListener(){this.triggerEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!0})),document.removeEventListener("visibilitychange",this.userEventHandler)}_onTouchStart(t){"HTML"!==t.target.tagName&&(window.addEventListener("touchend",this.touchEndHandler),window.addEventListener("mouseup",this.touchEndHandler),window.addEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.addEventListener("mousemove",this.touchMoveHandler),t.target.addEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"onclick","rocket-onclick"),this._pendingClickStarted())}_onTouchMove(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler),t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this._pendingClickFinished()}_onTouchEnd(t){window.removeEventListener("touchend",this.touchEndHandler),window.removeEventListener("mouseup",this.touchEndHandler),window.removeEventListener("touchmove",this.touchMoveHandler,{passive:!0}),window.removeEventListener("mousemove",this.touchMoveHandler)}_onClick(t){t.target.removeEventListener("click",this.clickHandler),this._renameDOMAttribute(t.target,"rocket-onclick","onclick"),this.interceptedClicks.push(t),t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this._pendingClickFinished()}_replayClicks(){window.removeEventListener("touchstart",this.touchStartHandler,{passive:!0}),window.removeEventListener("mousedown",this.touchStartHandler),this.interceptedClicks.forEach(t=>{t.target.dispatchEvent(new MouseEvent("click",{view:t.view,bubbles:!0,cancelable:!0}))})}_waitForPendingClicks(){return new Promise(t=>{this._isClickPending?this._pendingClickFinished=t:t()})}_pendingClickStarted(){this._isClickPending=!0}_pendingClickFinished(){this._isClickPending=!1}_renameDOMAttribute(t,e,r){t.hasAttribute&&t.hasAttribute(e)&&(event.target.setAttribute(r,event.target.getAttribute(e)),event.target.removeAttribute(e))}_triggerListener(){this._removeUserInteractionListener(this),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",this._loadEverythingNow.bind(this)):this._loadEverythingNow()}_preconnect3rdParties(){let t=[];document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(e=>{if(e.hasAttribute("src")){let r=new URL(e.src).origin;r!==location.origin&&t.push({src:r,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this._batchInjectResourceHints(t,"preconnect")}async _loadEverythingNow(){this.lastBreath=Date.now(),this._delayEventListeners(this),this._delayJQueryReady(this),this._handleDocumentWrite(),this._registerAllDelayedScripts(),this._preloadAllScripts(),await this._loadScriptsFromList(this.delayedScripts.normal),await this._loadScriptsFromList(this.delayedScripts.defer),await this._loadScriptsFromList(this.delayedScripts.async);try{await this._triggerDOMContentLoaded(),await this._triggerWindowLoad()}catch(t){console.error(t)}window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this._waitForPendingClicks().then(()=>{this._replayClicks()}),this._emptyTrash()}_registerAllDelayedScripts(){document.querySelectorAll("script[type=rocketlazyloadscript]").forEach(t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)})}async _transformScript(t){return new Promise((await this._littleBreath(),navigator.userAgent.indexOf("Firefox/")>0||""===navigator.vendor)?e=>{let r=document.createElement("script");[...t.attributes].forEach(t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),r.setAttribute(e,t.nodeValue))}),t.text&&(r.text=t.text),r.hasAttribute("src")?(r.addEventListener("load",e),r.addEventListener("error",e)):(r.text=t.text,e());try{t.parentNode.replaceChild(r,t)}catch(i){e()}}:async e=>{function r(){t.setAttribute("data-rocket-status","failed"),e()}try{let i=t.getAttribute("data-rocket-type"),n=t.getAttribute("data-rocket-src");t.text,i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",function r(){t.setAttribute("data-rocket-status","executed"),e()}),t.addEventListener("error",r),n?(t.removeAttribute("data-rocket-src"),t.src=n):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}catch(s){r()}})}async _loadScriptsFromList(t){let e=t.shift();return e&&e.isConnected?(await this._transformScript(e),this._loadScriptsFromList(t)):Promise.resolve()}_preloadAllScripts(){this._batchInjectResourceHints([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}_batchInjectResourceHints(t,e){var r=document.createDocumentFragment();t.forEach(t=>{let i=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(i){let n=document.createElement("link");n.href=i,n.rel=e,"preconnect"!==e&&(n.as="script"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),r.appendChild(n),this.trash.push(n)}}),document.head.appendChild(r)}_delayEventListeners(t){let e={};function r(t,r){!function t(r){!e[r]&&(e[r]={originalFunctions:{add:r.addEventListener,remove:r.removeEventListener},eventsToRewrite:[]},r.addEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.add.apply(r,arguments)},r.removeEventListener=function(){arguments[0]=i(arguments[0]),e[r].originalFunctions.remove.apply(r,arguments)});function i(t){return e[r].eventsToRewrite.indexOf(t)>=0?"rocket-"+t:t}}(t),e[t].eventsToRewrite.push(r)}function i(t,e){let r=t[e];Object.defineProperty(t,e,{get:()=>r||function(){},set(i){t["rocket"+e]=r=i}})}r(document,"DOMContentLoaded"),r(window,"DOMContentLoaded"),r(window,"load"),r(window,"pageshow"),r(document,"readystatechange"),i(document,"onreadystatechange"),i(window,"onload"),i(window,"onpageshow")}_delayJQueryReady(t){let e;function r(r){if(r&&r.fn&&!t.allJQueries.includes(r)){r.fn.ready=r.fn.init.prototype.ready=function(e){return t.domReadyFired?e.bind(document)(r):document.addEventListener("rocket-DOMContentLoaded",()=>e.bind(document)(r)),r([])};let i=r.fn.on;r.fn.on=r.fn.init.prototype.on=function(){if(this[0]===window){function t(t){return t.split(" ").map(t=>"load"===t||0===t.indexOf("load.")?"rocket-jquery-load":t).join(" ")}"string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=t(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(e=>{let r=arguments[0][e];delete arguments[0][e],arguments[0][t(e)]=r})}return i.apply(this,arguments),this},t.allJQueries.push(r)}e=r}r(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){r(t)}})}async _triggerDOMContentLoaded(){this.domReadyFired=!0,await this._littleBreath(),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),window.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this._littleBreath(),document.dispatchEvent(new Event("rocket-readystatechange")),await this._littleBreath(),document.rocketonreadystatechange&&document.rocketonreadystatechange()}async _triggerWindowLoad(){await this._littleBreath(),window.dispatchEvent(new Event("rocket-load")),await this._littleBreath(),window.rocketonload&&window.rocketonload(),await this._littleBreath(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this._littleBreath();let t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this._littleBreath(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}_handleDocumentWrite(){let t=new Map;document.write=document.writeln=function(e){let r=document.currentScript;r||console.error("WPRocket unable to document.write this: "+e);let i=document.createRange(),n=r.parentElement,s=t.get(r);void 0===s&&(s=r.nextSibling,t.set(r,s));let a=document.createDocumentFragment();i.setStart(a,0),a.appendChild(i.createContextualFragment(e)),n.insertBefore(a,s)}}async _littleBreath(){Date.now()-this.lastBreath>45&&(await this._requestAnimFrame(),this.lastBreath=Date.now())}async _requestAnimFrame(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}_emptyTrash(){this.trash.forEach(t=>t.remove())}static run(){let t=new RocketLazyLoadScripts;t._addUserInteractionListener(t)}}RocketLazyLoadScripts.run();</script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<script>
var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),gform.hooks[o][n].push({tag:i,callable:r,priority:t=null==t?10:t})},doHook:function(n,o,r){var t;if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[n][o]&&((o=gform.hooks[n][o]).sort(function(o,n){return o.priority-n.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==n?t.apply(null,r):r[0]=t.apply(null,r)})),"filter"==n)return r[0]},removeHook:function(o,n,t,i){var r;null!=gform.hooks[o][n]&&(r=(r=gform.hooks[o][n]).filter(function(o,n,r){return!!(null!=i&&i!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][n]=r)}});
</script>
<!-- Grow Social by Mediavine v.2.16.4 https://marketplace.mediavine.com/grow-social-pro/ -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Smash Burgers" />
<meta property="og:description" content="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" />
<meta property="og:url" content="https://www.budgetbytes.com/smash-burger/" />
<meta property="og:site_name" content="Budget Bytes" />
<meta property="og:updated_time" content="2023-08-31T13:01:57+00:00" />
<meta property="article:published_time" content="2023-05-24T10:13:05+00:00" />
<meta property="article:modified_time" content="2023-08-31T13:01:57+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Smash Burgers" />
<meta name="twitter:description" content="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" />
<meta property="og:image" content="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg" />
<meta name="twitter:image" content="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="900" />
<!-- Grow Social by Mediavine v.2.16.4 https://marketplace.mediavine.com/grow-social-pro/ -->
<meta name="pinterest-rich-pin" content="false" />
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" data-pagespeed-no-defer>
var gtm4wp_datalayer_name = "dataLayer";
var dataLayer = dataLayer || [];
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.2) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Smash Burgers - Budget Bytes</title><link rel='preload' href='https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo-reverse.svg' as='image'><link rel='preload' href='https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo.svg' as='image'><link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo.svg" as="image" /><link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo-reverse.svg" as="image" /><link rel="preload" href="https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-60x60.jpg" as="image" imagesrcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-120x120.jpg 2x" />
<meta name="description" content="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" />
<link rel="canonical" href="https://www.budgetbytes.com/smash-burger/" />
<meta name="author" content="Monti - Budget Bytes" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Monti - Budget Bytes" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="7 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.budgetbytes.com/smash-burger/#article","isPartOf":{"@id":"https://www.budgetbytes.com/smash-burger/"},"author":{"name":"Monti - Budget Bytes","@id":"https://www.budgetbytes.com/#/schema/person/aaac0d2755621a1b3b3cb728b66c86c0"},"headline":"Smash Burgers","datePublished":"2023-05-24T15:13:05+00:00","dateModified":"2023-08-31T18:01:57+00:00","wordCount":1414,"commentCount":73,"publisher":{"@id":"https://www.budgetbytes.com/#organization"},"image":{"@id":"https://www.budgetbytes.com/smash-burger/#primaryimage"},"thumbnailUrl":"https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg","keywords":["Butter","Ground Beef","Hamburger Buns","Homemade Burger Seasoning","Lettuce","Red Onion","Tomato"],"articleSection":["Beef Recipes","Comfort Food Recipes","Cost Per Serving","Holiday Recipes","Main Dish Recipes","Meat Recipes","Recipes","Sandwich Recipes","Under $3 per serving"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.budgetbytes.com/smash-burger/#respond"]}]},{"@type":"WebPage","@id":"https://www.budgetbytes.com/smash-burger/","url":"https://www.budgetbytes.com/smash-burger/","name":"Smash Burgers - Budget Bytes","isPartOf":{"@id":"https://www.budgetbytes.com/#website"},"primaryImageOfPage":{"@id":"https://www.budgetbytes.com/smash-burger/#primaryimage"},"image":{"@id":"https://www.budgetbytes.com/smash-burger/#primaryimage"},"thumbnailUrl":"https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg","datePublished":"2023-05-24T15:13:05+00:00","dateModified":"2023-08-31T18:01:57+00:00","description":"If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!","breadcrumb":{"@id":"https://www.budgetbytes.com/smash-burger/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.budgetbytes.com/smash-burger/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.budgetbytes.com/smash-burger/#primaryimage","url":"https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg","contentUrl":"https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg","width":1200,"height":900,"caption":"Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them."},{"@type":"BreadcrumbList","@id":"https://www.budgetbytes.com/smash-burger/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Budget Bytes","item":"https://www.budgetbytes.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://www.budgetbytes.com/category/recipes/"},{"@type":"ListItem","position":3,"name":"Meat Recipes","item":"https://www.budgetbytes.com/category/recipes/meat/"},{"@type":"ListItem","position":4,"name":"Beef Recipes","item":"https://www.budgetbytes.com/category/recipes/meat/beef/"},{"@type":"ListItem","position":5,"name":"Smash Burgers"}]},{"@type":"WebSite","@id":"https://www.budgetbytes.com/#website","url":"https://www.budgetbytes.com/","name":"Budget Bytes","description":"Delicious Recipes Designed for Small Budgets","publisher":{"@id":"https://www.budgetbytes.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.budgetbytes.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.budgetbytes.com/#organization","name":"Budget Bytes","url":"https://www.budgetbytes.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.budgetbytes.com/#/schema/logo/image/","url":"https://www.budgetbytes.com/wp-content/uploads/2020/11/budgetbytes_square_icon_transparent.png","contentUrl":"https://www.budgetbytes.com/wp-content/uploads/2020/11/budgetbytes_square_icon_transparent.png","width":300,"height":300,"caption":"Budget Bytes"},"image":{"@id":"https://www.budgetbytes.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/budgetbytes1/?ref=hl","https://twitter.com/Budget_Bytes","https://instagram.com/budgetbytes/","https://www.pinterest.com/budgetbytes/","https://www.youtube.com/channel/UC17vdVOZBVxTSDcldUBBlRg"]},{"@type":"Person","@id":"https://www.budgetbytes.com/#/schema/person/aaac0d2755621a1b3b3cb728b66c86c0","name":"Monti - Budget Bytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.budgetbytes.com/#/schema/person/image/","url":"https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-96x96.jpg","contentUrl":"https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-96x96.jpg","caption":"Monti - Budget Bytes"},"description":"Monti Carlo is a Puerto Rican food TV personality, food writer, and special events chef. Catch our Senior Food Editor doing her best not to talk with her mouth full on Good Morning America, The Today Show, Netflix, Food Network, Cooking Channel, and PBS. Her first full-length cookbook, Spanglish, will be published in Spring '25 by Simon and Schuster's Simon Element.","url":"https://www.budgetbytes.com/author/monti/"},{"@type":"Recipe","name":"Smash Burgers","author":{"@id":"https://www.budgetbytes.com/#/schema/person/aaac0d2755621a1b3b3cb728b66c86c0"},"description":"If you love a meaty, juicy burger patty with loads of crispy edges and tons of smoky crooks and crannies for your favorite sauce or cheese to sink into, this Smash Burger recipe is for you!","datePublished":"2023-05-24T10:13:05+00:00","image":["https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated.jpg","https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-500x500.jpg","https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-500x375.jpg","https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-480x270.jpg"],"recipeYield":["4","4 burgers"],"prepTime":"PT10M","cookTime":"PT30M","totalTime":"PT40M","recipeIngredient":["1 lb ground beef ($6.99)","4 Tbsp frozen salted butter, divided ($0.56)","3 tsp Homemade Burger Seasoning ($0.33)","4 burger buns ($2.99)","4 leaves iceberg lettuce ($0.37)","1 tomato, sliced into thin rounds ($0.45)","1/4 small red onion, sliced into thin rounds ($0.16)"],"recipeInstructions":[{"@type":"HowToStep","text":"Separate the ground beef into four equal portions.","name":"Separate the ground beef into four equal portions.","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-0"},{"@type":"HowToStep","text":"Grate 1/2 tablespoon of frozen butter onto each portion. Wrap the meat around the butter and shape it into a ball. Chill the beef until you are ready to cook. Place an ungreased cast iron skillet over high heat. Turn on your exhaust fan. Open a window.","name":"Grate 1/2 tablespoon of frozen butter onto each portion. Wrap the meat around the butter and shape it into a ball. Chill the beef until you are ready to cook. Place an ungreased cast iron skillet over high heat. Turn on your exhaust fan. Open a window.","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-1"},{"@type":"HowToStep","text":"When the skillet is smoking hot, sprinkle a 3/4 teaspoon of burger seasoning all over the beef ball, then place it in the pan.","name":"When the skillet is smoking hot, sprinkle a 3/4 teaspoon of burger seasoning all over the beef ball, then place it in the pan.","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-2"},{"@type":"HowToStep","text":"Smash down with a spatula and keep the spatula on the burger as it cooks. When you see the top of the patty change color (about 2 minutes), carefully work the spatula under the patty. Take your time with this step, as the patty will be stuck to the pan.*","name":"Smash down with a spatula and keep the spatula on the burger as it cooks. When you see the top of the patty change color (about 2 minutes), carefully work the spatula under the patty. Take your time with this step, as the patty will be stuck to the pan.*","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-3"},{"@type":"HowToStep","text":"When you have loosened the patty, flip it and smash it again. Cook for 2 minutes more, remove the patty from the pan, and rest it on a cooling rack. Wipe the pan down with a paper towel and cook the remaining patties.","name":"When you have loosened the patty, flip it and smash it again. Cook for 2 minutes more, remove the patty from the pan, and rest it on a cooling rack. Wipe the pan down with a paper towel and cook the remaining patties.","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-4"},{"@type":"HowToStep","text":"While the patties rest, place a rack in the top third of your oven and put it on broil. Melt the remaining 2 tablespoons of butter and brush it onto the inside of the buns. Place them buttered side up on a sheet pan and toast in the oven for a few minutes until golden.","name":"While the patties rest, place a rack in the top third of your oven and put it on broil. Melt the remaining 2 tablespoons of butter and brush it onto the inside of the buns. Place them buttered side up on a sheet pan and toast in the oven for a few minutes until golden.","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-5"},{"@type":"HowToStep","text":"Assemble the burgers. Place the burger on the bottom bun and top with onion rounds, tomato slices, and lettuce. Add the top bun and enjoy the crispiest, smokiest, burger ever!","name":"Assemble the burgers. Place the burger on the bottom bun and top with onion rounds, tomato slices, and lettuce. Add the top bun and enjoy the crispiest, smokiest, burger ever!","url":"https://www.budgetbytes.com/smash-burger/#wprm-recipe-79692-step-0-6"}],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.5","ratingCount":"20"},"recipeCategory":["Dinner","Lunch"],"recipeCuisine":["American"],"keywords":"Burger Seasoning, Cheese Burger, Smash Burger","nutrition":{"@type":"NutritionInformation","servingSize":"1 burger","calories":"516 kcal","carbohydrateContent":"23 g","proteinContent":"24 g","fatContent":"36 g","sodiumContent":"453 mg","fiberContent":"1 g"},"@id":"https://www.budgetbytes.com/smash-burger/#recipe","isPartOf":{"@id":"https://www.budgetbytes.com/smash-burger/#article"},"mainEntityOfPage":"https://www.budgetbytes.com/smash-burger/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Feed" href="https://www.budgetbytes.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Comments Feed" href="https://www.budgetbytes.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Smash Burgers Comments Feed" href="https://www.budgetbytes.com/smash-burger/feed/" />
<link rel="alternate" type="application/rss+xml" title="Budget Bytes » Stories Feed" href="https://www.budgetbytes.com/web-stories/feed/"><meta name="google-site-verification" content="Z5lrBB5NDHy_3jRTsg5UgtCkj32qDeV3AFhOWMvIcVU" /><script>function cpLoadCSS(e,t,n){"use strict";var i=window.document.createElement("link"),o=t||window.document.getElementsByTagName("script")[0];return i.rel="stylesheet",i.href=e,i.media="only x",o.parentNode.insertBefore(i,o),setTimeout(function(){i.media=n||"all"}),i}</script><style>.cp-popup-container .cpro-overlay,.cp-popup-container .cp-popup-wrapper{opacity:0;visibility:hidden;display:none}</style><link rel='stylesheet' id='sbi_styles-css' href='https://www.budgetbytes.com/wp-content/plugins/instagram-feed-pro/css/sbi-styles.min.css?ver=6.3.21696689008' media='all' />
<link rel='stylesheet' id='sby_styles-css' href='https://www.budgetbytes.com/wp-content/plugins/youtube-feed-pro/css/sb-youtube.min.css?ver=1.2.2' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://www.budgetbytes.com/wp-includes/css/dist/block-library/style.min.css?ver=6.3.1' media='all' />
<style id='safe-svg-svg-icon-style-inline-css'>
.safe-svg-cover{text-align:center}.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--foreground: #000000;--wp--preset--color--background: #ffffff;--wp--preset--color--background-2: #f5f5f5;--wp--preset--color--primary: #FBC41B;--wp--preset--color--secondary: #292929;--wp--preset--color--tertiary: #57A600;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 16px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: clamp(20px, 3vw, 24px);--wp--preset--font-size--x-large: clamp(22px, 3.4vw, 24px);--wp--preset--font-size--tiny: 11px;--wp--preset--font-size--normal: 18px;--wp--preset--font-size--big: clamp(22px, 4vw, 28px);--wp--preset--font-size--huge: clamp(25px, 4.5vw, 31px);--wp--preset--font-size--jumbo: clamp(28px, 5vw, 33px);--wp--preset--font-size--gigantic: clamp(31px, 5.25vw, 36px);--wp--preset--font-size--colossal: clamp(34px, 8.3vw, 46px);--wp--preset--font-family--system-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--wp--preset--font-family--serif: Montserrat;--wp--preset--font-family--mono: ui-monospace, SFMono-Regular, ui-monospace, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--border-radius--normal: 8px;--wp--custom--border-radius--large: 32px;--wp--custom--box-shadow--small: 0 4px 8px -4px rgba(113,113,113,0.16);--wp--custom--box-shadow--normal: 0 8px 16px -8px rgba(113,113,113,0.16);--wp--custom--box-shadow--large: 0 12px 32px -8px rgba(113,113,113,0.16);--wp--custom--color--link: #4242FF;--wp--custom--color--primary-darken: #DFA904;--wp--custom--layout--content: 736px;--wp--custom--layout--post-content: 668px;--wp--custom--layout--wide: 1168px;--wp--custom--layout--sidebar: 336px;--wp--custom--layout--page: var(--wp--custom--layout--content);--wp--custom--layout--padding: 16px;--wp--custom--layout--block-gap: 1.5rem;--wp--custom--layout--grid-column-gap: 32px;--wp--custom--layout--grid-row-gap: 32px;--wp--custom--line-height--tiny: 1.1;--wp--custom--line-height--small: 1.2;--wp--custom--line-height--medium: 1.4;--wp--custom--line-height--normal: 1.5;}.wp-block-button .wp-block-button__link{--wp--preset--color--primary: #FBC41B;--wp--preset--color--secondary: #292929;--wp--preset--color--white: #FFFFFF;}.wp-block-group{--wp--preset--color--foreground: #000000;--wp--preset--color--background: #ffffff;--wp--preset--color--background-2: #f5f5f5;--wp--preset--color--primary: #FBC41B;--wp--preset--color--secondary: #292929;}body { margin: 0;--wp--style--global--content-size: var(--wp--custom--layout--content);--wp--style--global--wide-size: var(--wp--custom--layout--wide); }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: var(--wp--custom--layout--block-gap); margin-block-end: 0; }:where(.wp-site-blocks) > :first-child:first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child:last-child { margin-block-end: 0; }body { --wp--style--block-gap: var(--wp--custom--layout--block-gap); }:where(body .is-layout-flow) > :first-child:first-child{margin-block-start: 0;}:where(body .is-layout-flow) > :last-child:last-child{margin-block-end: 0;}:where(body .is-layout-flow) > *{margin-block-start: var(--wp--custom--layout--block-gap);margin-block-end: 0;}:where(body .is-layout-constrained) > :first-child:first-child{margin-block-start: 0;}:where(body .is-layout-constrained) > :last-child:last-child{margin-block-end: 0;}:where(body .is-layout-constrained) > *{margin-block-start: var(--wp--custom--layout--block-gap);margin-block-end: 0;}:where(body .is-layout-flex) {gap: var(--wp--custom--layout--block-gap);}:where(body .is-layout-grid) {gap: var(--wp--custom--layout--block-gap);}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}body{background-color: var(--wp--preset--color--background);color: var(--wp--preset--color--foreground);font-family: var(--wp--preset--font-family--system-font);font-size: var(--wp--preset--font-size--normal);line-height: var(--wp--custom--line-height--normal);padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){color: var(--wp--custom--color--link);text-decoration: underline;}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.has-background-color{color: var(--wp--preset--color--background) !important;}.has-background-2-color{color: var(--wp--preset--color--background-2) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.has-tertiary-color{color: var(--wp--preset--color--tertiary) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.has-background-2-background-color{background-color: var(--wp--preset--color--background-2) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.has-tertiary-background-color{background-color: var(--wp--preset--color--tertiary) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.has-background-2-border-color{border-color: var(--wp--preset--color--background-2) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.has-tertiary-border-color{border-color: var(--wp--preset--color--tertiary) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-tiny-font-size{font-size: var(--wp--preset--font-size--tiny) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-big-font-size{font-size: var(--wp--preset--font-size--big) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}.has-jumbo-font-size{font-size: var(--wp--preset--font-size--jumbo) !important;}.has-gigantic-font-size{font-size: var(--wp--preset--font-size--gigantic) !important;}.has-colossal-font-size{font-size: var(--wp--preset--font-size--colossal) !important;}.has-system-font-font-family{font-family: var(--wp--preset--font-family--system-font) !important;}.has-serif-font-family{font-family: var(--wp--preset--font-family--serif) !important;}.has-mono-font-family{font-family: var(--wp--preset--font-family--mono) !important;}.wp-block-button .wp-block-button__link.has-primary-color{color: var(--wp--preset--color--primary) !important;}.wp-block-button .wp-block-button__link.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.wp-block-button .wp-block-button__link.has-white-color{color: var(--wp--preset--color--white) !important;}.wp-block-button .wp-block-button__link.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.wp-block-button .wp-block-button__link.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.wp-block-button .wp-block-button__link.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.wp-block-button .wp-block-button__link.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.wp-block-button .wp-block-button__link.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}.wp-block-button .wp-block-button__link.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.wp-block-group.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.wp-block-group.has-background-color{color: var(--wp--preset--color--background) !important;}.wp-block-group.has-background-2-color{color: var(--wp--preset--color--background-2) !important;}.wp-block-group.has-primary-color{color: var(--wp--preset--color--primary) !important;}.wp-block-group.has-secondary-color{color: var(--wp--preset--color--secondary) !important;}.wp-block-group.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.wp-block-group.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.wp-block-group.has-background-2-background-color{background-color: var(--wp--preset--color--background-2) !important;}.wp-block-group.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.wp-block-group.has-secondary-background-color{background-color: var(--wp--preset--color--secondary) !important;}.wp-block-group.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.wp-block-group.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.wp-block-group.has-background-2-border-color{border-color: var(--wp--preset--color--background-2) !important;}.wp-block-group.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.wp-block-group.has-secondary-border-color{border-color: var(--wp--preset--color--secondary) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
.wp-block-button .wp-block-button__link{background-color: var(--wp--preset--color--primary);border-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--background);}
</style>
<link data-minify="1" rel='stylesheet' id='dpsp-frontend-style-pro-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/social-pug/assets/dist/style-frontend-pro.2.16.4.css?ver=1696258883' media='all' />
<script>document.addEventListener('DOMContentLoaded', function(event) { if( typeof cpLoadCSS !== 'undefined' ) { cpLoadCSS('https://www.budgetbytes.com/wp-content/plugins/convertpro/assets/modules/css/cp-popup.min.css?ver=1.7.7', 0, 'all'); } }); </script>
<style id='cwp-font-inline-css'>
@font-face{
font-family: 'Montserrat';
font-weight: 800;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800.woff2') format('woff2');
}
@font-face{
font-family: 'Montserrat';
font-weight: 800;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800italic.woff2') format('woff2');
}
</style>
<link data-minify="1" rel='stylesheet' id='theme-style-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/assets/css/main.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='block-post-listing-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/inc/blocks/post-listing/block-post-listing.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='searchwp-forms-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/searchwp/assets/css/frontend/search-forms.css?ver=1696258883' media='all' />
<script async="async" data-noptimize="1" data-cfasync="false" src='https://scripts.mediavine.com/tags/budget-bytes-new-owner.js?ver=6.3.1' id='mv-script-wrapper-js'></script>
<script src='https://www.budgetbytes.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1' id='jquery-migrate-js' defer></script>
<link rel="https://api.w.org/" href="https://www.budgetbytes.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.budgetbytes.com/wp-json/wp/v2/posts/79618" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.budgetbytes.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.budgetbytes.com/?p=79618' />
<link rel="alternate" type="application/json+oembed" href="https://www.budgetbytes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.budgetbytes.com%2Fsmash-burger%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.budgetbytes.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.budgetbytes.com%2Fsmash-burger%2F&format=xml" />
<style type="text/css"> .tippy-box[data-theme~="wprm"] { background-color: #333333; color: #FFFFFF; } .tippy-box[data-theme~="wprm"][data-placement^="top"] > .tippy-arrow::before { border-top-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="bottom"] > .tippy-arrow::before { border-bottom-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="left"] > .tippy-arrow::before { border-left-color: #333333; } .tippy-box[data-theme~="wprm"][data-placement^="right"] > .tippy-arrow::before { border-right-color: #333333; } .tippy-box[data-theme~="wprm"] a { color: #FFFFFF; } .wprm-comment-rating svg { width: 24px !important; height: 24px !important; } img.wprm-comment-rating { width: 120px !important; height: 24px !important; } .wprm-comment-rating svg path { fill: #fcc51c; } .wprm-comment-rating svg polygon { stroke: #fcc51c; } .wprm-comment-ratings-container svg .wprm-star-full { fill: #fcc51c; } .wprm-comment-ratings-container svg .wprm-star-empty { stroke: #fcc51c; }.span_content .wprm-recipe ul.wprm-recipe-instructions li {
list-style-type: decimal!important;
}
</style><style type="text/css">.wprm-glossary-term {color: #5A822B;text-decoration: underline;cursor: help;}</style>
<script type="rocketlazyloadscript" data-grow-initializer="">!(function(){window.growMe||((window.growMe=function(e){window.growMe._.push(e);}),(window.growMe._=[]));var e=document.createElement("script");(e.type="text/javascript"),(e.src="https://faves.grow.me/main.js"),(e.defer=!0),e.setAttribute("data-grow-faves-site-id","U2l0ZToxY2E5NmIwMC1mMTc3LTQyZjAtOWRlMS0wMjJlNzM0NzhiMGQ=");var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t);})();</script>
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<!-- GTM Container placement set to automatic -->
<script data-cfasync="false" data-pagespeed-no-defer type="text/javascript">
var dataLayer_content = {"pagePostType":"post","pagePostType2":"single-post","pageCategory":["beef","comfort-food","cost-per-serving","holiday-recipes","main-dish","meat","recipes","sandwich","under-3-per-serving"],"pageAttributes":["butter","ground-beef","hamburger-buns","homemade-burger-seasoning","lettuce","red-onion","tomato"],"pagePostAuthor":"Monti - Budget Bytes","pagePostDate":"05.24.23","pagePostDateYear":"2023","pagePostDateMonth":"05","pagePostDateDay":"24","pagePostDateDayName":"Wednesday","pagePostDateHour":"10","pagePostDateMinute":"13","pagePostDateIso":"2023-05-24T10:13:05-05:00","pagePostDateUnix":1684923185,"pagePostTerms":{"category":["Beef Recipes","Comfort Food Recipes","Cost Per Serving","Holiday Recipes","Main Dish Recipes","Meat Recipes","Recipes","Sandwich Recipes","Under $3 per serving"],"post_tag":["Butter","Ground Beef","Hamburger Buns","Homemade Burger Seasoning","Lettuce","Red Onion","Tomato"],"meta":{"logtivity_last_logged":"2023-08-31 18:01:54","dpsp_share_options":"a:7:{s:12:\"custom_image\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"src\";s:0:\"\";}s:12:\"custom_title\";s:0:\"\";s:18:\"custom_description\";s:0:\"\";s:22:\"custom_image_pinterest\";a:2:{s:2:\"id\";s:5:\"79626\";s:3:\"src\";s:76:\"https:\/\/www.budgetbytes.com\/wp-content\/uploads\/2023\/05\/Smash-Burger-PIN1.jpg\";}s:22:\"custom_title_pinterest\";s:12:\"Smash Burger\";s:28:\"custom_description_pinterest\";s:136:\"If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!\";s:12:\"custom_tweet\";s:0:\"\";}","dpsp_pinterest_hidden_images":"a:1:{i:0;i:79627;}","dpsp_post_single_previous_urls":"","cwp_hide_affiliate_disclaimer":"0","cwp_hide_step_by_step_button":"0","cwp_post_publish_date":"","cwp_post_updated_date":"","wprm_rating":"a:3:{s:5:\"count\";i:20;s:5:\"total\";i:90;s:7:\"average\";d:4.5;}","wprm_rating_average":"4.5","wprm_rating_count":"20"}},"postID":79618,"postFormat":"standard"};
dataLayer.push( dataLayer_content );
</script>
<script data-cfasync="false">
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MHNH3ZW');
</script>
<!-- End Google Tag Manager -->
<!-- End Google Tag Manager for WordPress by gtm4wp.com --><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="profile" href="http://gmpg.org/xfn/11"><link rel="pingback" href="https://www.budgetbytes.com/xmlrpc.php"> <link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/fonts/montserrat-800italic.woff2" as="font" type="font/woff2" crossorigin>
<link rel="icon" href="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-180x180.png" />
<meta name="msapplication-TileImage" content="https://www.budgetbytes.com/wp-content/uploads/2022/05/cropped-cropped-favicon-270x270.png" />
<style id="wp-custom-css">
/*Mediavine Mobile Fix*/
@media only screen and (max-width: 359px) {
.bb-recipe-card {
padding-left: 0px !important;
padding-right: 0px !important;
border: none !important;
box-shadow: none !important;
}
.wprm-recipe-instructions li .mv-ad-box {
margin-left: -32px !important;
}
.bb-recipe-card .wprm-call-to-action {
margin-left: 0px !important;
margin-right: 0px !important;
max-width: 100% !important;
}
}
/* NerdPress - Accessibility Options "Link" - AccessiBe
* Please Do Not Remove *
*/
.site-footer .site-footer__bottom .site-footer__links .site-footer__links-item, .site-footer .site-footer__bottom .site-footer__links .access-options {
text-decoration: underline;
}
.site-footer .site-footer__bottom .site-footer__links .access-options:hover {
cursor: pointer;
}
/* NerdPress AccessiBe Options Link End */
/* Nerdpress WPRM Author Link */
.wprm-recipe-author a {
color: #000;
}
/* NerdPress WPRM Author Link End */
/* NP Hide Legend on Gravity Form 7 - CTM 11/16/2022 */
.gform_required_legend {
display: none;
}
</style>
<noscript><style>.perfmatters-lazy[data-src]{display:none !important;}</style></noscript></head><body class="single wp-embed-responsive singular content-sidebar" id="top">
<!-- GTM Container placement set to automatic -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MHNH3ZW" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --><div class="site-container"><a class="skip-link screen-reader-text" href="#main-content">Skip to content</a><header class="site-header" role="banner"><div class="wrap"><a href="https://www.budgetbytes.com" rel="home" class="site-header__logo" aria-label="Budget Bytes Home"><img data-perfmatters-preload class="site-header__logo--primary" src="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo.svg" alt="Budget Bytes Logo" width="320px" height="48.89px"><img data-perfmatters-preload class="site-header__logo--reverse" src="https://www.budgetbytes.com/wp-content/themes/budgetbytes-2022/assets/images/budgetbytes-logo-reverse.svg" alt="Budget Bytes Logo" width="240px" height="36px"></a><div class="site-header__toggles"><button aria-label="Menu" class="menu-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-menu3"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button></div><nav class="nav-menu" role="navigation"><div class="nav-primary"><ul id="primary-menu" class="menu"><li id="menu-item-80215" class="menu-item current-post-ancestor current-menu-parent current-post-parent menu-item-has-children"><a href="https://www.budgetbytes.com/category/recipes/"><span>Recipes</span></a><button aria-label="Submenu Dropdown" class="submenu-expand" tabindex="-1"><span class="submenu-expand__icon"></span></button>
<ul class="sub-menu">
<li id="menu-item-85960" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/#recent"><span>Recipe Search</span></a></li>
<li id="menu-item-80924" class="menu-item"><a href="https://www.budgetbytes.com/recipes/"><span>Categories</span></a></li>
<li id="menu-item-70675" class="menu-item"><a href="https://www.budgetbytes.com/recipes/#recipes-by-ingredient"><span>Ingredient Index</span></a></li>
<li id="menu-item-70676" class="menu-item"><a href="https://www.budgetbytes.com/random/"><span>Surprise Me</span></a></li>
<li id="menu-item-70677" class="menu-item"><a href="https://www.budgetbytes.com/category/extra-bytes/recipe-roundups/"><span>Recipe Roundups</span></a></li>
<li id="menu-item-70678" class="menu-item"><a href="https://www.budgetbytes.com/recipe-videos/"><span>Recipe Videos</span></a></li>
</ul>
</li>
<li id="menu-item-84507" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/seasonal/fall-recipes/"><span>Fall Recipes</span></a></li>
<li id="menu-item-70679" class="menu-item menu-item-has-children"><a href="/recipes/"><span>Popular</span></a><button aria-label="Submenu Dropdown" class="submenu-expand" tabindex="-1"><span class="submenu-expand__icon"></span></button>
<ul class="sub-menu">
<li id="menu-item-70680" class="menu-item"><a href="https://www.budgetbytes.com/category/extra-bytes/budget-friendly-meal-prep/"><span>Meal Prep</span></a></li>
<li id="menu-item-70681" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/meat/chicken/"><span>Chicken Recipes</span></a></li>
<li id="menu-item-70682" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/pasta/"><span>Pasta Recipes</span></a></li>
<li id="menu-item-70683" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/vegetarian/"><span>Vegetarian Recipes</span></a></li>
<li id="menu-item-70684" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/slow-cooker/"><span>Slow Cooker Recipes</span></a></li>
<li id="menu-item-70685" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/one-pot/"><span>One Pot Meals</span></a></li>
<li id="menu-item-71219" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/breakfast/"><span>Breakfast Recipes</span></a></li>
<li id="menu-item-71220" class="menu-item"><a href="https://www.budgetbytes.com/category/recipes/soup/"><span>Soup Recipes</span></a></li>
<li id="menu-item-70687" class="menu-item"><a href="https://www.budgetbytes.com/category/how-to/"><span>How-To</span></a></li>
</ul>
</li>
<li id="menu-item-70686" class="menu-item"><a target="_blank" rel="noopener" href="https://shop.budgetbytes.com/"><span>Meal Plans</span></a></li>
<li id="menu-item-70688" class="menu-item"><a href="https://www.budgetbytes.com/shop/"><span>Shop</span></a></li>
<li id="menu-item-70817" class="menu-item menu-item-has-children"><a href="https://www.budgetbytes.com/about/"><span>About</span></a><button aria-label="Submenu Dropdown" class="submenu-expand" tabindex="-1"><span class="submenu-expand__icon"></span></button>
<ul class="sub-menu">
<li id="menu-item-70818" class="menu-item"><a href="https://www.budgetbytes.com/about/"><span>About Budget Bytes</span></a></li>
<li id="menu-item-70819" class="menu-item"><a href="https://www.budgetbytes.com/welcome-to-budget-bytes/"><span>New? Start Here</span></a></li>
<li id="menu-item-70820" class="menu-item"><a href="https://www.budgetbytes.com/faq/"><span>FAQ</span></a></li>
<li id="menu-item-70821" class="menu-item"><a href="https://www.budgetbytes.com/contact/"><span>Contact</span></a></li>
</ul>
</li>
</ul></div></nav><button aria-label="Search" class="search-toggle"><svg class="open" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-search-fat"></use></svg><svg class="close" width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-close"></use></svg></button></div><div class="header-search"><div class="header-search__inner">
<form role="search" method="get" class="search-form" action="https://www.budgetbytes.com/">
<label>
<span class="screen-reader-text">Search for</span>
<input type="search" class="search-field" placeholder="Search recipes" value="" name="s" title="Search for" />
</label>
<button type="submit" aria-label="Submit" class="search-submit"><svg width="24" height="24" aria-hidden="true" role="img" focusable="false"><use href="#utility-search-fat"></use></svg></button>
</form>
</div></div></header><div class="site-inner" id="main-content"><div class="content-area"><main class="site-main" role="main"><article class="type-post mv-content-wrapper grow-content-body"><header class="entry-header"><p id="breadcrumbs" class="breadcrumb"><span><span><a href="https://www.budgetbytes.com/">Budget Bytes</a></span> » <span><a href="https://www.budgetbytes.com/category/recipes/">Recipes</a></span> » <span><a href="https://www.budgetbytes.com/category/recipes/meat/">Meat Recipes</a></span> » <span><a href="https://www.budgetbytes.com/category/recipes/meat/beef/">Beef Recipes</a></span> » <span class="breadcrumb_last" aria-current="page">Smash Burgers</span></span></p><h1 class="entry-title">Smash Burgers</h1><span class="cost-per">$11.85 recipe / $2.96 serving</span><div class="entry-header__meta"><div class="entry-header__meta-left"><a class="entry-header__meta-avatar" href="https://www.budgetbytes.com/author/monti/" aria-hidden="true" tabindex="-1"><img data-perfmatters-preload alt='' src='https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-60x60.jpg' srcset='https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-120x120.jpg 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async'/></a><div class="entry-header__meta-inner"><span class="entry-header__author">by <a href="https://www.budgetbytes.com/author/monti/">Monti - Budget Bytes</a></span><p class="entry-date"><span class="entry-date__published">published <time datetime="2023-05-24">May 24, 2023</time></span></p></div></div><div class="entry-header__meta-right"><style>#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-full svg * { fill: #fbc41b; }#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-rating-1-33); }#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-rating-1-50); }#wprm-recipe-rating-1 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-rating-1-66); }linearGradient#wprm-recipe-rating-1-33 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-1-50 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-1-66 stop { stop-color: #fbc41b; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><linearGradient id="wprm-recipe-rating-1-33"><stop offset="0%" stop-opacity="1" /><stop offset="33%" stop-opacity="1" /><stop offset="33%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-rating-1-50"><stop offset="0%" stop-opacity="1" /><stop offset="50%" stop-opacity="1" /><stop offset="50%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs><defs><linearGradient id="wprm-recipe-rating-1-66"><stop offset="0%" stop-opacity="1" /><stop offset="66%" stop-opacity="1" /><stop offset="66%" stop-opacity="0" /><stop offset="100%" stop-opacity="0" /></linearGradient></defs></svg><div id="wprm-recipe-rating-1" class="wprm-recipe-rating wprm-recipe-rating-separate"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-50" data-rating="5" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"/></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">4.50</span> from <span class="wprm-recipe-rating-count">20</span> votes</div></div></div></div><div class="single-post-jump-buttons"><a href="https://pinterest.com/pin/create/button/?url=https://www.budgetbytes.com/smash-burger/&media=https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg&description=Smash%20Burger" title="Share on Pinterest" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button pinterest shared-counts-no-count" data-postid="79618" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"></span><span class="shared-counts-label">Pin Recipe</span></span></a><a href="#wprm-recipe-container-79692" data-recipe="79692" style="color: #292929;background-color: var(--wp--preset--color--primary);border-color: #292929;border-radius: 0px;padding: 16px 24px;" class="wprm-recipe-jump wprm-recipe-link wprm-jump-to-recipe-shortcode wprm-block-text-uppercase wprm-jump-smooth-scroll wprm-recipe-jump-inline-button wprm-recipe-link-inline-button wprm-color-accent" data-smooth-scroll="500">Jump to recipe →</a></div><p class="affiliate-disclaimer">This post contains some affiliate links, which means that we make a small commission off items you purchase at no additional cost to you.</p></header><div class="entry-content"><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="600" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg"></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1-800x1200.jpg" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Side shot of a Smash Burger with a toothpick in the bun." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span>
<p>If you love a meaty, juicy burger patty with loads of crispy edges and tons of smoky crooks and crannies for your favorite sauce or cheese to sink into, this Smash Burger recipe is for you! Will you be left with a greasy stovetop? Undoubtedly. Will your smoke alarm holler? Probably. Will it be worth it? A million times YES. Plus, you get four burgers for what you’d pay for just one at a restaurant. Oh haiiiii, Budget-Friendly Smash Burger! Let’s be best friends.</p>
<span id="more-79618"></span>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1600'%20viewBox='0%200%201200%201600'%3E%3C/svg%3E" alt="Side shot of a Smash Burger with a toothpick in the bun." class="wp-image-79633 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-400x533.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-800x1067.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-768x1024.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-1152x1536.jpg 1152w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-640x853.jpg 640w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-150x200.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="1600" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1.jpg" alt="Side shot of a Smash Burger with a toothpick in the bun." class="wp-image-79633" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-400x533.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-800x1067.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-768x1024.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-1152x1536.jpg 1152w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-640x853.jpg 640w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1-150x200.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V1.jpg"></noscript></figure>
<h2 class="wp-block-heading" id="h-what-is-a-smash-burger"><strong>What is a Smash Burger?</strong></h2>
<p>Unlike traditional burger patties that are thick and round, a Smash Burger has a thin patty with crispy, charred edges packed with smoky flavor. You make a smash burger by smashing a ball of ground beef onto an ungreased, hot, flat surface.</p>
<h2 class="wp-block-heading" id="h-ingredients-for-the-best-smash-burger"><strong>Ingredients for The Best Smash Burger</strong></h2>
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained">
<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained">
<p>Smash Burgers are easy (though a bit messy) to make, ridiculously delicious, and perfect for a weekend get-together. Here’s what you’ll need to make a Smash Burger:</p>
<ul>
<li><strong>Ground Beef- </strong>Don’t use lean ground beef. You need fat for a smashed patty to be flavorful and juicy. Instead, use 80/20 ground beef, which means the beef is 80% meat and 20% fat. If you want to make your burger patties with ground turkey or ground chicken the same rule applies.</li>
<li><strong>Butter-</strong> Adding frozen butter to the beef mix helps give you juicy results with deep, meaty flavors while also delivering smoky, crispy edges. To add even more depth to your burger, you should butter your buns before toasting them.</li>
<li><strong>Seasoning</strong> – We use our <a href="https://www.budgetbytes.com/homemade-burger-seasoning/">Homemade Burger Seasoning</a>, but you can also season this burger with a teaspoon of salt and a quarter teaspoon of black pepper. For a little more kick, try using a teaspoon of your favorite spicy blend, like our <a href="https://www.budgetbytes.com/homemade-cajun-seasoning/">Homemade Cajun Seasoning</a>.</li>
<li><strong>Buns-</strong> What’s a burger without a fabulous bun? I prefer potato buns, but classic white, pretzel, brioche, or sesame buns are great choices too. You can also wrap your patty in a big, juicy lettuce leaf!</li>
<li><strong>Toppings –</strong> If you want to make a cheeseburger, I recommend American cheese, which melts beautifully. We went super-classic with lettuce, red onion, and slices of tomato for our toppings, and skipped sauces that would overpower the flavor of our patty. But you do you. Other toppings that work fabulously are slices of avocado and crispy bacon topped with a fried egg. Or smother your patty with sautéed mushrooms and onions and smoky chipotle peppers. </li>
</ul>
</div>
</div>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="wp-image-79629 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="wp-image-79629" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-overhead.jpg"></noscript></figure>
<div class="block-callout minimal-callout"><h2 class="block-callout__header"><span>Tips For A Great Smash Burger</span></h2><div class="block-callout__innerBlocks">
<ol>
<li>Chill your beef. Cold burgers have solidified fat. That means more fat stays in the patty as it cooks, producing a crispy brown exterior with a juicy interior.</li>
<li>Salt your burgers when you’re ready to cook them. Salt denatures the proteins in ground beef very quickly, and it only takes minutes to transform the patty into a dry, rubbery, meatloaf-like texture.</li>
<li>Use a cast iron or heavy-bottomed stainless steel pan which holds heat when a cold patty hits it. Do not use a non-stick pan; you should never heat non-stick to high temperatures.</li>
<li>Use the biggest, heaviest spatula you have to smash your burger. If you need more leverage, place a tall, thick, heavy glass lip-side down on the spatula and place your palm on its bottom to smash down even more.</li>
<li>To ensure your burgers are cooked evenly, use a meat thermometer to check for doneness. The internal temperature of a cooked burger should be 160°F.</li>
</ol>
</div></div>
<h2 class="wp-block-heading" id="h-what-to-serve-with-smash-burgers">What To Serve With Smash Burgers</h2>
<p>We paired our Smash Burgers with our <a href="https://www.budgetbytes.com/oven-baked-steak-fries/">Oven Baked Steak Fries</a> and they were absolutely AMAZING. You can also try our super crispy <a href="https://www.budgetbytes.com/thick-cut-garlic-parmesan-oven-fries/">Garlic Parmesan Oven Fries.</a> Other great options are our <a href="https://www.budgetbytes.com/simple-creamy-coleslaw/">Easy Creamy Coleslaw</a> or our <a href="https://www.budgetbytes.com/summer-vegetable-pasta-salad/">Summer Vegetable Pasta Salad</a>.</p>
<h2 class="wp-block-heading" id="h-how-to-store-smash-burgers"><strong>How To Store Smash Burgers</strong></h2>
<p>You can store cooked patties in an airtight container for up to 4 days. Then, reheat the patties in a preheated pan until steaming hot. Avoid using a microwave, which will leave you with rubbery results. If you’d rather freeze the burgers, don’t cook the patties. Instead, freeze the buttered, unseasoned ball-shaped portions wrapped in plastic or wax paper in an airtight container. Take them out of the freezer the day before you want to prepare them and thaw them overnight in your fridge.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Side shot of a Smash Burger with a toothpick in the bun with a second Smash Burger in the background." class="wp-image-79631 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese.jpg" alt="Side shot of a Smash Burger with a toothpick in the bun with a second Smash Burger in the background." class="wp-image-79631" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-side-cheese.jpg"></noscript></figure>
<div id="recipe"></div><div class="block-area block-area-before-recipe"><div class="single-share-wrap"><span class="single-share-wrap__header">Share this recipe</span><div class="shared-counts-wrap before-recipe style-icon"><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.budgetbytes.com/smash-burger/&display=popup&ref=plugin&src=share_buttondescription=Smash%20Burger" title="Share on Facebook" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button facebook shared-counts-no-count" data-postid="79618" data-social-network="Facebook" data-social-action="Share" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></span><span class="shared-counts-label">Facebook</span></span></a><a href="https://twitter.com/share?url=https://www.budgetbytes.com/smash-burger/&text=Smash%20Burgersdescription=Smash%20Burger" title="Share on Twitter" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button twitter shared-counts-no-count" data-postid="79618" data-social-network="Twitter" data-social-action="Tweet" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></span><span class="shared-counts-label">Tweet</span></span></a><a href="https://pinterest.com/pin/create/button/?url=https://www.budgetbytes.com/smash-burger/&media=https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg&description=Smash%20Burger" title="Share on Pinterest" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button pinterest shared-counts-no-count" data-postid="79618" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></span><span class="shared-counts-label">Pin</span></span></a><a href="mailto:?subject=Your%20friend%20has%20shared%20an%20article%20with%20you.&body=Smash%20Burgers%0D%0Ahttps%3A%2F%2Fwww.budgetbytes.com%2Fsmash-burger%2F%0D%0Adescription=Smash%20Burger" title="Share via Email" class="shared-counts-button email no-scroll shared-counts-no-count" data-postid="79618" data-social-network="Email" data-social-action="Emailed" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-email1"></use></svg></span><span class="shared-counts-label">Email</span></span></a></div></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="600" height="1200" decoding="async" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg"></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" decoding="async" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1-800x1200.jpg" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Side shot of a Smash Burger with a toothpick in the bun." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span>
<span class="cp-load-after-post"></span></div><div id="wprm-recipe-container-79692" class="wprm-recipe-container" data-recipe-id="79692" data-servings="4"><div class="wprm-recipe wprm-recipe-template-2022--nutrition-disclaimer"><div class="bb-recipe-card">
<div class="bb-recipe-card__top">
<div class="bb-recipe-card__top-left">
<span class="bb-recipe-card__title">
<h2 class="wprm-recipe-name wprm-block-text-bold">Smash Burgers</h2>
</span>
<style>#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-full svg * { fill: #fbc41b; }#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-33 svg * { fill: url(#wprm-recipe-rating-2-33); }#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-50 svg * { fill: url(#wprm-recipe-rating-2-50); }#wprm-recipe-rating-2 .wprm-rating-star.wprm-rating-star-66 svg * { fill: url(#wprm-recipe-rating-2-66); }linearGradient#wprm-recipe-rating-2-33 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-2-50 stop { stop-color: #fbc41b; }linearGradient#wprm-recipe-rating-2-66 stop { stop-color: #fbc41b; }</style><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="display:block;width:0px;height:0px"><defs><lineargradient id="wprm-recipe-rating-2-33"><stop offset="0%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="1"></stop><stop offset="33%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-rating-2-50"><stop offset="0%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="1"></stop><stop offset="50%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs><defs><lineargradient id="wprm-recipe-rating-2-66"><stop offset="0%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="1"></stop><stop offset="66%" stop-opacity="0"></stop><stop offset="100%" stop-opacity="0"></stop></lineargradient></defs></svg><div id="wprm-recipe-rating-2" class="wprm-recipe-rating wprm-recipe-rating-inline"><span class="wprm-rating-star wprm-rating-star-1 wprm-rating-star-full" data-rating="1" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-2 wprm-rating-star-full" data-rating="2" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-3 wprm-rating-star-full" data-rating="3" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-4 wprm-rating-star-full" data-rating="4" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star wprm-rating-star-5 wprm-rating-star-50" data-rating="5" data-color="#fbc41b" style="font-size: 1em;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewbox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#fbc41b" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><div class="wprm-recipe-rating-details wprm-block-text-normal"><span class="wprm-recipe-rating-average">4.50</span> from <span class="wprm-recipe-rating-count">20</span> votes</div></div>
<div class="wprm-recipe-summary wprm-block-text-normal"><span style="display: block;">If you love a meaty, juicy burger patty with loads of crispy edges and tons of smoky crooks and crannies for your favorite sauce or cheese to sink into, this Smash Burger recipe is for you! </span></div>
<div class="wprm-spacer"></div>
<div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-author-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-author-label">Author: </span><span class="wprm-recipe-details wprm-recipe-author wprm-block-text-normal"><a href="https://www.budgetbytes.com/author/monti/" target="_blank">Monti – Budget Bytes</a></span></div>
</div>
<div class="bb-recipe-card__top-right">
<div class="wprm-recipe-image wprm-block-image-normal"><img style="border-width: 0px;border-style: solid;border-color: #666666;" data-pin-nopin="true" width="268" height="268" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-500x500.jpg" class="attachment-268x268 size-268x268" alt="Side shot of a Smash Burger with a toothpick in the bun and french fries in the background." decoding="async" fetchpriority="high" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated-96x96.jpg 96w" sizes="(max-width: 268px) 100vw, 268px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-plated.jpg"></div>
</div>
</div>
<div class="bb-recipe-card__meta">
<div class="wprm-recipe-block-container wprm-recipe-block-container-separated wprm-block-text-normal wprm-recipe-servings-container" style=""><span class="wprm-recipe-icon wprm-recipe-servings-icon"><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg" class="perfmatters-lazy" data-src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg" /><noscript><img decoding="async" src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg" alt="" data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/meal-plans.svg"></noscript></span> <span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-servings-label">Servings </span><span class="wprm-recipe-servings-with-unit"><span class="wprm-recipe-servings wprm-recipe-details wprm-recipe-servings-79692 wprm-recipe-servings-adjustable-text wprm-block-text-normal" data-initial-servings="" data-recipe="79692" aria-label="Adjust recipe servings">4</span> <span class="wprm-recipe-servings-unit wprm-recipe-details-unit wprm-block-text-normal">burgers</span></span></div>
<div class="wprm-recipe-meta-container wprm-recipe-times-container wprm-recipe-details-container wprm-recipe-details-container-inline wprm-block-text-normal" style=""><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-prep-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-prep-time-label">Prep </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-prep_time wprm-recipe-prep_time-minutes">10<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-prep_time-unit wprm-recipe-prep_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-cook-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-cook-time-label">Cook </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-cook_time wprm-recipe-cook_time-minutes">30<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-cook_time-unit wprm-recipe-cook_timeunit-minutes" aria-hidden="true">mins</span></span></div><div class="wprm-recipe-block-container wprm-recipe-block-container-inline wprm-block-text-normal wprm-recipe-time-container wprm-recipe-total-time-container" style=""><span class="wprm-recipe-details-label wprm-block-text-normal wprm-recipe-time-label wprm-recipe-total-time-label">Total </span><span class="wprm-recipe-time wprm-block-text-normal"><span class="wprm-recipe-details wprm-recipe-details-minutes wprm-recipe-total_time wprm-recipe-total_time-minutes">40<span class="sr-only screen-reader-text wprm-screen-reader-text"> minutes</span></span> <span class="wprm-recipe-details-unit wprm-recipe-details-minutes wprm-recipe-total_time-unit wprm-recipe-total_timeunit-minutes" aria-hidden="true">mins</span></span></div></div>
</div>
<div class="bb-recipe-card__buttons">
<span class="wprm-recipe-grow-container"><a href="https://app.grow.me" target="_blank" rel="nofollow noreferrer" style="color: #292929;background-color: #ffffff;border-color: #292929;border-radius: 0px;padding: 10px 5px;" class="wprm-recipe-grow-not-saved wprm-recipe-grow wprm-recipe-link wprm-block-text-normal wprm-recipe-link-wide-button wprm-color-accent" data-recipe-id="79692">Save Recipe</a><a href="https://app.grow.me" target="_blank" rel="nofollow noreferrer" style="color: #292929;background-color: #ffffff;border-color: #292929;border-radius: 0px;padding: 10px 5px;display: none;" class="wprm-recipe-grow-saved wprm-recipe-grow wprm-recipe-link wprm-block-text-normal wprm-recipe-link-wide-button wprm-color-accent" data-recipe-id="79692">Saved!</a></span>
<a href="https://www.budgetbytes.com/wprm_print/79692" style="color: #292929;background-color: #ffffff;border-color: #292929;border-radius: 0px;padding: 10px 5px;" class="wprm-recipe-print wprm-recipe-link wprm-print-recipe-shortcode wprm-block-text-normal wprm-recipe-print-wide-button wprm-recipe-link-wide-button wprm-color-accent" data-recipe-id="79692" data-template="" target="_blank" rel="nofollow">Print Recipe</a>
</div>
<div class="wprm-recipe-ingredients-container wprm-recipe-ingredients-no-images wprm-recipe-79692-ingredients-container wprm-block-text-normal wprm-ingredient-style-regular wprm-recipe-images-before" data-recipe="79692" data-servings="4"><h3 class="wprm-recipe-header wprm-recipe-ingredients-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Ingredients</h3><div class="wprm-recipe-ingredient-group"><ul class="wprm-recipe-ingredients"><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="0"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-unit">lb</span> <span class="wprm-recipe-ingredient-name">ground beef</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($6.99)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="1"><span class="wprm-recipe-ingredient-amount">4</span> <span class="wprm-recipe-ingredient-unit">Tbsp</span> <span class="wprm-recipe-ingredient-name">frozen salted butter, divided</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.56)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="2"><span class="wprm-recipe-ingredient-amount">3</span> <span class="wprm-recipe-ingredient-unit">tsp</span> <span class="wprm-recipe-ingredient-name"><a href="https://www.budgetbytes.com/homemade-burger-seasoning/" class="wprm-recipe-ingredient-link" target="_blank" rel="nofollow">Homemade Burger Seasoning</a></span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.33)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="3"><span class="wprm-recipe-ingredient-amount">4</span> <span class="wprm-recipe-ingredient-name">burger buns</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($2.99)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="4"><span class="wprm-recipe-ingredient-amount">4</span> <span class="wprm-recipe-ingredient-unit">leaves</span> <span class="wprm-recipe-ingredient-name">iceberg lettuce</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.37)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="5"><span class="wprm-recipe-ingredient-amount">1</span> <span class="wprm-recipe-ingredient-name">tomato, sliced into thin rounds</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.45)</span></li><li class="wprm-recipe-ingredient" style="list-style-type: disc;" data-uid="6"><span class="wprm-recipe-ingredient-amount">1/4</span> <span class="wprm-recipe-ingredient-name">small red onion, sliced into thin rounds</span> <span class="wprm-recipe-ingredient-notes wprm-recipe-ingredient-notes-normal">($0.16)</span></li></ul></div></div>
<div class="wprm-recipe-instructions-container wprm-recipe-79692-instructions-container wprm-block-text-normal" data-recipe="79692"><h3 class="wprm-recipe-header wprm-recipe-instructions-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none wprm-header-has-actions" style="">Instructions </h3><div class="wprm-recipe-instruction-group"><ul class="wprm-recipe-instructions"><li id="wprm-recipe-79692-step-0-0" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Separate the ground beef into four equal portions. </span></div></li><li id="wprm-recipe-79692-step-0-1" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Grate <span class="wprm-dynamic-quantity">1/2</span> tablespoon of frozen butter onto each portion. Wrap the meat around the butter and shape it into a ball. Chill the beef until you are ready to cook. Place an ungreased cast iron skillet over high heat. Turn on your exhaust fan. Open a window.</span></div></li><li id="wprm-recipe-79692-step-0-2" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">When the skillet is smoking hot, sprinkle a <span class="wprm-dynamic-quantity">3/4 </span>teaspoon of burger seasoning all over the beef ball, then place it in the pan. </span></div></li><li id="wprm-recipe-79692-step-0-3" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Smash down with a spatula and keep the spatula on the burger as it cooks. When you see the top of the patty change color (about 2 minutes), carefully work the spatula under the patty. Take your time with this step, as the patty will be stuck to the pan.*</span></div></li><li id="wprm-recipe-79692-step-0-4" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">When you have loosened the patty, flip it and smash it again. Cook for 2 minutes more, remove the patty from the pan, and rest it on a cooling rack. Wipe the pan down with a paper towel and cook the remaining patties.</span></div></li><li id="wprm-recipe-79692-step-0-5" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">While the patties rest, place a rack in the top third of your oven and put it on broil. Melt the remaining <span class="wprm-dynamic-quantity">2</span> tablespoons of butter and brush it onto the inside of the buns. Place them buttered side up on a sheet pan and toast in the oven for a few minutes until golden. </span></div></li><li id="wprm-recipe-79692-step-0-6" class="wprm-recipe-instruction" style="list-style-type: decimal;"><div class="wprm-recipe-instruction-text" style="margin-bottom: 5px"><span style="display: block;">Assemble the burgers. Place the burger on the bottom bun and top with onion rounds, tomato slices, and lettuce. Add the top bun and enjoy the crispiest, smokiest, burger ever!</span></div></li></ul></div></div><span class="bb-recipe-card__note"><p>See how we <a href="/how-to-calculate-recipe-costs/">calculate recipe costs here</a>.</p>
</span>
<div class="wprm-spacer"></div>
<hr>
<div class="wprm-recipe-equipment-container wprm-block-text-normal" data-recipe="79692"><h3 class="wprm-recipe-header wprm-recipe-equipment-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Equipment</h3><div class="wprm-recipe-equipment wprm-recipe-equipment-images wprm-recipe-equipment-images-align-left"><div class="wprm-recipe-equipment-item wprm-recipe-equipment-item-no-image"><div class="wprm-recipe-equipment-affiliate-html"><a href="https://www.amazon.com/dp/B00006JSUA/ref=as_li_ss_il?ref=idea_lv_dp_ov_d&ascsub&linkCode=li3&tag=budgetbytesrecipe-20&linkId=17fba4530c04066cb2bef8e76c769eea&language=en_US" target="_blank"><img decoding="async" border="0" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="cast iron skillet" data-pin-media="//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00006JSUA&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=budgetbytesrecipe-20&language=en_US" class="perfmatters-lazy" data-src="//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00006JSUA&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=budgetbytesrecipe-20&language=en_US" /><noscript><img decoding="async" border="0" src="//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00006JSUA&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=budgetbytesrecipe-20&language=en_US" alt="cast iron skillet" data-pin-media="//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00006JSUA&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=budgetbytesrecipe-20&language=en_US"></noscript></a></div><div class="wprm-recipe-equipment-name"><a href="https://amzn.to/2V1Y2BA" class="wprm-recipe-equipment-link" target="_blank" rel="nofollow">Cast Iron Skillet</a></div></div></div></div>
<div class="wprm-recipe-notes-container wprm-block-text-normal"><h3 class="wprm-recipe-header wprm-recipe-notes-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Notes</h3><div class="wprm-recipe-notes"><span style="display: block;">*If you want to make this a cheeseburger, as soon as you flip the patty and smash it again, remove the spatula and top the patty with a slice of cheese. I prefer American, as it melts beautifully. </span></div></div>
<h3 class="wprm-recipe-header wprm-recipe-nutrition-header wprm-block-text-normal wprm-align-left wprm-header-decoration-none" style="">Nutrition</h3><div class="wprm-nutrition-label-container wprm-nutrition-label-container-grouped wprm-block-text-normal" style="text-align: left;"><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-serving_size" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Serving: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">burger</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-calories" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Calories: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">516</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">kcal</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-carbohydrates" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Carbohydrates: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">23</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-protein" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Protein: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">24</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fat" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Fat: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">36</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-sodium" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Sodium: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">453</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">mg</span></span><span class="wprm-nutrition-label-text-nutrition-container wprm-nutrition-label-text-nutrition-container-fiber" style="flex-basis: 230px"><span class="wprm-nutrition-label-text-nutrition-label wprm-block-text-normal" style="color: #292929">Fiber: </span><span class="wprm-nutrition-label-text-nutrition-value" style="color: #292929">1</span><span class="wprm-nutrition-label-text-nutrition-unit" style="color: #292929">g</span></span></div>
<div class="wprm-spacer"></div>
<i>Read our full <a href="https://www.budgetbytes.com/nutrition-information-disclaimer/">nutrition disclaimer here.</a></i>
<div class="wprm-call-to-action wprm-call-to-action-simple" style="color: #ffffff;background-color: #000000;margin: 0px;padding-top: 24px;padding-bottom: 24px;"><span class="wprm-recipe-icon wprm-call-to-action-icon"><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='0'%20height='0'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg" class="perfmatters-lazy" data-src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg" /><noscript><img decoding="async" src="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg" alt="" data-pin-nopin="true" data-pin-media="/wp-content/themes/budgetbytes-2022/assets/icons/blocks/instagram.svg"></noscript></span> <span class="wprm-call-to-action-text-container"><span class="wprm-call-to-action-header" style="color: #ffffff;">Have you tried this recipe?</span><span class="wprm-call-to-action-text">Mention <a href="https://www.instagram.com/budgetbytes" target="_blank" rel="noreferrer noopener" style="color: #ffffff">@budgetbytes</a> or tag <a href="https://www.instagram.com/explore/tags/budgetbytes" target="_blank" rel="noreferrer noopener" style="color: #ffffff">#budgetbytes</a> on Instagram!</span></span></div>
</div>
<div id="recipe-step-by-step"></div></div></div>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Side view of Smash Burger being held by two hands." class="wp-image-79628 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands.jpg" alt="Side view of Smash Burger being held by two hands." class="wp-image-79628" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-hands.jpg"></noscript></figure>
<h2 class="wp-block-heading" id="h-how-to-make-smash-burgers-step-by-step-photos">How to Make Smash Burgers – Step by Step Photos</h2>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of one pound of ground beef separated into quarters." class="wp-image-79619 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray.jpg" alt="Overhead shot of one pound of ground beef separated into quarters." class="wp-image-79619" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/1-beef-on-tray.jpg"></noscript></figure>
<p>Separate 1 pound of ground beef into four equal portions.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of frozen, grated butter being tucked into a ball of beef." class="wp-image-79620 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter.jpg" alt="Overhead shot of frozen, grated butter being tucked into a ball of beef." class="wp-image-79620" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/2-add-butter.jpg"></noscript></figure>
<p>Grate 1/2 tablespoon of frozen butter onto each portion. Wrap the meat around the butter and shape it into a ball. Chill the balls of beef until you are ready to cook. When it’s go time, place an ungreased cast iron skillet over high heat. Turn on your exhaust fan. Open a window.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of ball of beef in a black cast iron pan." class="wp-image-79623 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet.jpg" alt="Overhead shot of ball of beef in a black cast iron pan." class="wp-image-79623" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/5-add-to-skillet.jpg"></noscript></figure>
<p>When the skillet is smoking hot, sprinkle a 3/4 teaspoon of our <a href="https://www.budgetbytes.com/homemade-burger-seasoning/">Homemade Burger Seasoning</a> all over the beef ball, then place it in the pan.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of raw Smashed Burger patty in a black cast iron pan being smashed by a silver spatula." class="wp-image-79624 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash.jpg" alt="Overhead shot of raw Smashed Burger patty in a black cast iron pan being smashed by a silver spatula." class="wp-image-79624" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/6-smash.jpg"></noscript></figure>
<p>Smash down with a spatula to create an even patty about 1/4 to a 1/2 inch thick. Keep the spatula on the burger as it cooks. When you see the top of the patty change color (about 2 minutes), gently slide the spatula back and forth to take it off the top of the patty. If you try to just push it up, the movement could break the patty. Then, carefully work the spatula under the patty. Take your time with this step, as the patty will be stuck to the pan.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of cooked Smashed Burger patty in a black cast iron pan." class="wp-image-79625 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty.jpg" alt="Overhead shot of cooked Smashed Burger patty in a black cast iron pan." class="wp-image-79625" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/7-cooked-patty.jpg"></noscript></figure>
<p>When you have loosened the patty, flip it and smash it again. If you want to make a cheeseburger, top the patty with a slice of cheese. Cook for 2 minutes more, remove the patty from the pan, and rest it on a cooling rack. Wipe the pan down with a paper towel and cook the remaining patties.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of melted butter being brushed onto a bun in a sheet pan with other buns." class="wp-image-79621 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns.jpg" alt="Overhead shot of melted butter being brushed onto a bun in a sheet pan with other buns." class="wp-image-79621" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/3-butter-buns.jpg"></noscript></figure>
<p>While the patties rest, place a rack in the top third of your oven and put it on broil. Melt the remaining 2 tablespoons of butter and brush it onto the inside of the buns.</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="900" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='900'%20viewBox='0%200%201200%20900'%3E%3C/svg%3E" alt="Overhead shot of toasted buttered buns in a sheet pan." class="wp-image-79622 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-150x113.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="900" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns.jpg" alt="Overhead shot of toasted buttered buns in a sheet pan." class="wp-image-79622" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns-150x113.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/4-toasted-buns.jpg"></noscript></figure>
<p>Toast the buns buttered side up in the oven for a few minutes until golden. Assemble your burgers with red onion rounds, slices of tomato, and lettuce. Top the burger with the remaining bun and chow down, my friend!! Don’t forget to say “I cook. You clean.” as you get showered with compliments! #Trust</p>
<figure class="wp-block-image size-full"><img decoding="async" width="1200" height="1600" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1200'%20height='1600'%20viewBox='0%200%201200%201600'%3E%3C/svg%3E" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="wp-image-79635 perfmatters-lazy" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-400x533.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-800x1067.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-768x1024.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-1152x1536.jpg 1152w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-640x853.jpg 640w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-150x200.jpg 150w" data-sizes="(max-width: 736px) 100vw, 736px" /><noscript><img decoding="async" width="1200" height="1600" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3.jpg" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="wp-image-79635" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3.jpg 1200w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-400x533.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-800x1067.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-768x1024.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-1152x1536.jpg 1152w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-640x853.jpg 640w, https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3-150x200.jpg 150w" sizes="(max-width: 736px) 100vw, 736px" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-V3.jpg"></noscript></figure>
<section class="block-post-listing layout-beta"><header><h2>More Great Burger Recipes</h2></header><div class="block-post-listing__inner"><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/bacon-ranch-turkey-burgers/" aria-label="ViewBacon Ranch Turkey Burgers"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Close up side view of a ranch turkey burger held in hands" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand.jpg 1200w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Close up side view of a ranch turkey burger held in hands" decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand.jpg 1200w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/09/Bacon-Ranch-Turkey-Burgers-hand.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Bacon Ranch Turkey Burgers</h3><span class="cost-per">$12.11 recipe / $3.03 serving</span></div></a></article><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/greek-turkey-burgers/" aria-label="ViewMediterranean Turkey Burgers"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Overhead view of an open faced Mediterranean Turkey Burger on a paper lined plate with cucumber salad on the side" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers.jpg 1200w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Overhead view of an open faced Mediterranean Turkey Burger on a paper lined plate with cucumber salad on the side" decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers.jpg 1200w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2011/03/Mediterranean-Turkey-Burgers.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Mediterranean Turkey Burgers</h3><span class="cost-per">$11.47 recipe / $1.91 serving</span></div></a></article><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/black-bean-burgers/" aria-label="ViewBlack Bean Burgers"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Side view of a single black bean burger on a bun, fully dressed, sitting on newsprint" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side.jpg 800w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Side view of a single black bean burger on a bun, fully dressed, sitting on newsprint" decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side.jpg 800w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2011/01/Black-Bean-Burger-side.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Black Bean Burgers</h3><span class="cost-per">$2.57 recipe / $0.43 serving</span></div></a></article><article class="post-summary post-summary--secondary"><a href="https://www.budgetbytes.com/sliders/" aria-label="ViewSliders"><div class="post-summary__image"><img width="268" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='268'%20height='200'%20viewBox='0%200%20268%20200'%3E%3C/svg%3E" class="attachment-thumbnail-tertiary size-thumbnail-tertiary perfmatters-lazy" alt="Side view of sliders stacked in a pyramid." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-268x200.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack.jpg 1200w" data-sizes="(max-width: 767px) 50vw, 25vw" /><noscript><img width="268" height="200" src="https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-268x200.jpg" class="attachment-thumbnail-tertiary size-thumbnail-tertiary" alt="Side view of sliders stacked in a pyramid." decoding="async" sizes="(max-width: 767px) 50vw, 25vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-268x200.jpg 268w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-400x300.jpg 400w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-800x600.jpg 800w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-768x576.jpg 768w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-500x375.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-368x276.jpg 368w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack-150x113.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack.jpg 1200w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/08/Sliders-Stack.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Sliders</h3><span class="cost-per">$16.11 recipe / $2.69 serving</span></div></a></article></div></section><span class="cp-load-after-post"></span></div></article><div class="single-post-bottom"><div class="single-share-wrap"><span class="single-share-wrap__header">Share this recipe</span><div class="shared-counts-wrap style-icon"><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.budgetbytes.com/smash-burger/&display=popup&ref=plugin&src=share_buttondescription=Smash%20Burger" title="Share on Facebook" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button facebook shared-counts-no-count" data-postid="79618" data-social-network="Facebook" data-social-action="Share" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-facebook"></use></svg></span><span class="shared-counts-label">Facebook</span></span></a><a href="https://twitter.com/share?url=https://www.budgetbytes.com/smash-burger/&text=Smash%20Burgersdescription=Smash%20Burger" title="Share on Twitter" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button twitter shared-counts-no-count" data-postid="79618" data-social-network="Twitter" data-social-action="Tweet" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-twitter"></use></svg></span><span class="shared-counts-label">Tweet</span></span></a><a href="https://pinterest.com/pin/create/button/?url=https://www.budgetbytes.com/smash-burger/&media=https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg&description=Smash%20Burger" title="Share on Pinterest" target="_blank" rel="nofollow noopener noreferrer" class="shared-counts-button pinterest shared-counts-no-count" data-postid="79618" data-pin-do="none" data-social-network="Pinterest" data-social-action="Pin" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-pinterest"></use></svg></span><span class="shared-counts-label">Pin</span></span></a><a href="mailto:?subject=Your%20friend%20has%20shared%20an%20article%20with%20you.&body=Smash%20Burgers%0D%0Ahttps%3A%2F%2Fwww.budgetbytes.com%2Fsmash-burger%2F%0D%0Adescription=Smash%20Burger" title="Share via Email" class="shared-counts-button email no-scroll shared-counts-no-count" data-postid="79618" data-social-network="Email" data-social-action="Emailed" data-social-target="https://www.budgetbytes.com/smash-burger/"><span class="shared-counts-icon-label"><span class="shared-counts-icon"><svg width="20" height="20" aria-hidden="true" role="img" focusable="false"><use href="#utility-email1"></use></svg></span><span class="shared-counts-label">Email</span></span></a></div></div><p class="term-list">Posted in: <a href="https://www.budgetbytes.com/category/recipes/meat/beef/" rel="tag">Beef Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/comfort-food/" rel="tag">Comfort Food Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/cost-per-serving/" rel="tag">Cost Per Serving</a>, <a href="https://www.budgetbytes.com/category/recipes/holiday-recipes/" rel="tag">Holiday Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/main-dish/" rel="tag">Main Dish Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/meat/" rel="tag">Meat Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/" rel="tag">Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/sandwich/" rel="tag">Sandwich Recipes</a>, <a href="https://www.budgetbytes.com/category/recipes/cost-per-serving/under-3-per-serving/" rel="tag">Under $3 per serving</a></p><div class="single-post-author"><a class="single-post-author__avatar" href="https://www.budgetbytes.com/author/monti/" aria-hidden="true" tabindex="-1"><img alt src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='96'%20height='96'%20viewBox='0%200%2096%2096'%3E%3C/svg%3E" class="avatar avatar-96 photo perfmatters-lazy" height="96" width="96" decoding="async" data-src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-96x96.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-192x192.jpg 2x" /><noscript><img alt='' src='https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-96x96.jpg' srcset='https://www.budgetbytes.com/wp-content/uploads/2023/05/Untitled-design-192x192.jpg 2x' class='avatar avatar-96 photo' height='96' width='96' decoding='async'/></noscript></a><div class="single-post-author__info"><span class="single-post-author__name">Monti Carlo</span><span class="single-post-author__bio">Monti Carlo is a Puerto Rican food TV personality, food writer, and special events chef. Catch our Senior Food Editor doing her best not to talk with her mouth full on Good Morning America, The Today Show, Netflix, Food Network, Cooking Channel, and PBS. Her first full-length cookbook, Spanglish, will be published in Spring '25 by Simon and Schuster's Simon Element.</span><a class="wp-block-button__link has-secondary-color has-primary-background-color has-text-color has-background" href="https://www.budgetbytes.com/author/monti/">More About Monti</a></div></div></div><div class="block-area block-area-after-post"><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="600" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg"></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1-800x1200.jpg" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Side shot of a Smash Burger with a toothpick in the bun." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span><div class="block-email-subscribe alignfull has-background has-secondary-background-color has-text-color has-background-color"><div class="block-email-subscribe__inner"><div class="block-email-subscribe__innerBlocks no-social-links">
<h2 class="is-style-no-margin has-background-color has-text-color has-huge-font-size wp-block-heading">Eat More. Spend Less.</h2>
<p class="is-style-smaller-margin has-background-color has-text-color has-small-font-size">Sign up for the Budget Bytes newsletter and you’ll get new content delivered by email weekly, helpful tips, PLUS my FREE 14 Day Pantry Meal Plan!</p>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript"></script>
<div class="gf_browser_unknown gform_wrapper gravity-theme gform-theme--no-framework" data-form-theme="gravity-theme" data-form-index="0" id="gform_wrapper_6"><div id="gf_6" class="gform_anchor" tabindex="-1"></div><form method="post" enctype="multipart/form-data" target="gform_ajax_frame_6" id="gform_6" action="/smash-burger/#gf_6" data-formid="6">
<div class="gform-body gform_body"><div id="gform_fields_6" class="gform_fields top_label form_sublabel_below description_below"><div id="field_6_1" class="gfield gfield--type-text gfield--width-five-twelfths gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible" data-js-reload="field_6_1"><label class="gfield_label gform-field-label" for="input_6_1">First NAme<span class="gfield_required"><span class="gfield_required gfield_required_text">(Required)</span></span></label><div class="ginput_container ginput_container_text"><input name="input_1" id="input_6_1" type="text" value="" class="large" placeholder="First Name..." aria-required="true" aria-invalid="false"> </div></div><div id="field_6_3" class="gfield gfield--type-email gfield--width-five-twelfths gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label gfield_visibility_visible" data-js-reload="field_6_3"><label class="gfield_label gform-field-label" for="input_6_3">Email Address<span class="gfield_required"><span class="gfield_required gfield_required_text">(Required)</span></span></label><div class="ginput_container ginput_container_email">
<input name="input_3" id="input_6_3" type="text" value="" class="large" placeholder="Email address..." aria-required="true" aria-invalid="false">
</div></div><div id="field_submit" class="gfield gfield--type-submit gfield--width-one-sixth field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible" data-field-class="gform_editor_submit_container" data-field-position="inline" data-js-reload="true"><input type="submit" id="gform_submit_button_6" class="gform-button gform-button--white button" value="Sign Me Up" onclick='if(window["gf_submitting_6"]){return false;} window["gf_submitting_6"]=true; ' onkeypress='if( event.keyCode == 13 ){ if(window["gf_submitting_6"]){return false;} window["gf_submitting_6"]=true; jQuery("#gform_6").trigger("submit",[true]); }'></div></div></div>
<div class="gform_footer top_label"> <input type="hidden" name="gform_ajax" value="form_id=6&title=&description=&tabindex=0">
<input type="hidden" class="gform_hidden" name="is_submit_6" value="1">
<input type="hidden" class="gform_hidden" name="gform_submit" value="6">
<input type="hidden" class="gform_hidden" name="gform_unique_id" value="">
<input type="hidden" class="gform_hidden" name="state_6" value="WyJbXSIsIjhlYWY2YmY3ZjhmYzhkYzQ4YmM5NTQyOWVkNjNhNTcxIl0=">
<input type="hidden" class="gform_hidden" name="gform_target_page_number_6" id="gform_target_page_number_6" value="0">
<input type="hidden" class="gform_hidden" name="gform_source_page_number_6" id="gform_source_page_number_6" value="1">
<input type="hidden" name="gform_field_values" value="">
</div>
<p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="157"><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>
</div>
<iframe style="display:none;width:0px;height:0px;" src="about:blank" name="gform_ajax_frame_6" id="gform_ajax_frame_6" title="This iframe contains the logic required to handle Ajax powered Gravity Forms."></iframe>
<script type="rocketlazyloadscript">
gform.initializeOnLoaded( function() {gformInitSpinner( 6, 'https://www.budgetbytes.com/wp-content/plugins/gravityforms/images/spinner.svg', true );jQuery('#gform_ajax_frame_6').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */ jQuery(document).scrollTop(jQuery('#gform_wrapper_6').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_6').val();gformInitSpinner( 6, 'https://www.budgetbytes.com/wp-content/plugins/gravityforms/images/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery('#gform_wrapper_6').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_6').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}, 50);}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger('gform_post_render', [6, current_page]);gform.utils.trigger({ event: 'gform/postRender', native: false, data: { formId: 6, currentPage: current_page } });} );} );
</script>
</div></div></div><span class="cp-load-after-post"></span></div>
<div id="comments" class="entry-comments">
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/smash-burger/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.budgetbytes.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="comment-form-wprm-rating">
<label for="wprm-comment-rating-926973515">Recipe Rating</label> <span class="wprm-rating-stars">
<fieldset class="wprm-comment-ratings-container" data-original-rating="0" data-current-rating="0">
<legend>Recipe Rating</legend>
<input aria-label="Don't rate this recipe" name="wprm-comment-rating" value="0" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="margin-left: -27px !important; width: 30px !important; height: 30px !important;" checked="checked"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-0" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
</defs>
<use xlink:href="#wprm-star-empty-0" x="3" y="3" />
<use xlink:href="#wprm-star-empty-0" x="33" y="3" />
<use xlink:href="#wprm-star-empty-0" x="63" y="3" />
<use xlink:href="#wprm-star-empty-0" x="93" y="3" />
<use xlink:href="#wprm-star-empty-0" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 1 out of 5 stars" name="wprm-comment-rating" value="1" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-1" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-1" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-1" x="3" y="3" />
<use xlink:href="#wprm-star-empty-1" x="33" y="3" />
<use xlink:href="#wprm-star-empty-1" x="63" y="3" />
<use xlink:href="#wprm-star-empty-1" x="93" y="3" />
<use xlink:href="#wprm-star-empty-1" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 2 out of 5 stars" name="wprm-comment-rating" value="2" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-2" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-2" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-2" x="3" y="3" />
<use xlink:href="#wprm-star-full-2" x="33" y="3" />
<use xlink:href="#wprm-star-empty-2" x="63" y="3" />
<use xlink:href="#wprm-star-empty-2" x="93" y="3" />
<use xlink:href="#wprm-star-empty-2" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 3 out of 5 stars" name="wprm-comment-rating" value="3" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-3" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-3" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-3" x="3" y="3" />
<use xlink:href="#wprm-star-full-3" x="33" y="3" />
<use xlink:href="#wprm-star-full-3" x="63" y="3" />
<use xlink:href="#wprm-star-empty-3" x="93" y="3" />
<use xlink:href="#wprm-star-empty-3" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 4 out of 5 stars" name="wprm-comment-rating" value="4" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<polygon class="wprm-star-empty" id="wprm-star-empty-4" fill="none" stroke="#fcc51c" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9" stroke-linejoin="miter"/>
<path class="wprm-star-full" id="wprm-star-full-4" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-4" x="3" y="3" />
<use xlink:href="#wprm-star-full-4" x="33" y="3" />
<use xlink:href="#wprm-star-full-4" x="63" y="3" />
<use xlink:href="#wprm-star-full-4" x="93" y="3" />
<use xlink:href="#wprm-star-empty-4" x="123" y="3" />
</svg></span><br><input aria-label="Rate this recipe 5 out of 5 stars" name="wprm-comment-rating" value="5" type="radio" onclick="WPRecipeMaker.rating.onClick(this)" id="wprm-comment-rating-926973515" style="width: 30px !important; height: 30px !important;"><span aria-hidden="true" style="width: 150px !important; height: 30px !important;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="16px" viewBox="0 0 150 30">
<defs>
<path class="wprm-star-full" id="wprm-star-full-5" fill="#fcc51c" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"/>
</defs>
<use xlink:href="#wprm-star-full-5" x="3" y="3" />
<use xlink:href="#wprm-star-full-5" x="33" y="3" />
<use xlink:href="#wprm-star-full-5" x="63" y="3" />
<use xlink:href="#wprm-star-full-5" x="93" y="3" />
<use xlink:href="#wprm-star-full-5" x="123" y="3" />
</svg></span> </fieldset>
</span>
</div>
<p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit wp-block-button__link" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='79618' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="1ce5826e94" /></p><p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_2" name="ak_js" value="79"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_2" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond -->
<p class="akismet_comment_form_privacy_notice">This site uses Akismet to reduce spam. <a href="https://akismet.com/privacy/" target="_blank" rel="nofollow noopener">Learn how your comment data is processed</a>.</p>
<div class="comments-title-wrap">
<h3 class="comments-title">Comments</h3>
<a class="comments-leave-link wp-block-button__link" href="#reply-title">Leave a Comment</a>
</div>
<ol class="comment-list">
<li id="comment-665099" class="comment even thread-even depth-1">
<article id="div-comment-665099" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Gabe</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-665099"><time datetime="2023-08-10T23:21:17-05:00">08.10.23 at 11:21 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Really surprised by how much I liked this recipe! </p>
<p>I thought that the lack of being able to serve medium rare would remove the flavor but to my surprise it tasted great. Love how it makes the burger so well charred on the outside, that has always been my struggle with burgers, getting a good mallard reaction on the surface. </p>
<p>Also loved that burger seasoning, was always taught that salt and pepper is all you need with a burger but loved the kick this provided.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-665099' data-commentid="665099" data-postid="79618" data-belowelement="div-comment-665099" data-respondelement="respond" data-replyto="Reply to Gabe" aria-label='Reply to Gabe'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663788" class="comment odd alt thread-odd thread-alt depth-1 parent">
<article id="div-comment-663788" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Rae</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-663788"><time datetime="2023-07-11T18:35:50-05:00">07.11.23 at 6:35 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Loved this recipe, my husband kept Ravi g about it</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663788' data-commentid="663788" data-postid="79618" data-belowelement="div-comment-663788" data-respondelement="respond" data-replyto="Reply to Rae" aria-label='Reply to Rae'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-663814" class="comment byuser comment-author-monti bypostauthor even depth-2 staff">
<article id="div-comment-663814" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-663814"><time datetime="2023-07-12T11:16:49-05:00">07.12.23 at 11:16 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thanks Rae!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663814' data-commentid="663814" data-postid="79618" data-belowelement="div-comment-663814" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-663523" class="comment odd alt thread-even depth-1">
<article id="div-comment-663523" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Weighing in Late</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-663523"><time datetime="2023-07-03T07:46:29-05:00">07.03.23 at 7:46 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I enjoyed this take on the smash burger but give it 3 stars for the sloppy recipe writing; by the time a recipe goes up on the site, it should have been thoroughly tested with all content closely reviewed. Readers should not have to point out gaps or miscalculations in the recipe. Such occurrences used to be rare on this website due to Beth’s conscientious recipe testing and proofreading. In this way I have to agree with many of the other commenters that the blog has strayed from its core mission – for me, largely in terms of reliability and trustworthiness. A little more attention to detail could go a long way with the other BB contributors.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663523' data-commentid="663523" data-postid="79618" data-belowelement="div-comment-663523" data-respondelement="respond" data-replyto="Reply to Weighing in Late" aria-label='Reply to Weighing in Late'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663330" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-663330" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">LOL</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-663330"><time datetime="2023-06-27T08:24:07-05:00">06.27.23 at 8:24 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>tl;dr</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663330' data-commentid="663330" data-postid="79618" data-belowelement="div-comment-663330" data-respondelement="respond" data-replyto="Reply to LOL" aria-label='Reply to LOL'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-663329" class="comment odd alt thread-even depth-1 parent">
<article id="div-comment-663329" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Katie</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-663329"><time datetime="2023-06-27T08:22:18-05:00">06.27.23 at 8:22 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>The only thing that has changed about Budget Bytes is that the cost of groceries has gone up and the prices listed on the recipes reflect that. These aren’t bougie ingredients like artisan buns and angus beef. These are regular ingredients for regular people.</p>
<p>You’re out of touch if you think you can get a pound of ordinary ground beef for less than 7 dollars or a decent quality pack of buns for less than 3.</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-663329' data-commentid="663329" data-postid="79618" data-belowelement="div-comment-663329" data-respondelement="respond" data-replyto="Reply to Katie" aria-label='Reply to Katie'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-665098" class="comment even depth-2">
<article id="div-comment-665098" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Gabe</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-665098"><time datetime="2023-08-10T23:16:32-05:00">08.10.23 at 11:16 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Hmm, I literally just went to our local coop which isn’t exactly an value saver and bought a pound of ground beef for…6.99. </p>
<p>Didn’t buy buns there that is very easy to find for under 3 bucks.</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-665098' data-commentid="665098" data-postid="79618" data-belowelement="div-comment-665098" data-respondelement="respond" data-replyto="Reply to Gabe" aria-label='Reply to Gabe'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662892" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-662892" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">M</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662892"><time datetime="2023-06-14T17:26:59-05:00">06.14.23 at 5:26 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>+1, I used to recommend this website to everyone :(</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662892' data-commentid="662892" data-postid="79618" data-belowelement="div-comment-662892" data-respondelement="respond" data-replyto="Reply to M" aria-label='Reply to M'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-662498" class="comment even thread-even depth-1">
<article id="div-comment-662498" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Sue</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662498"><time datetime="2023-06-01T17:25:12-05:00">06.01.23 at 5:25 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I agree</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g transform="translate(0, 0)"><polygon fill="none" stroke="#343434" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" points="12,2.6 15,9 21.4,9 16.7,13.9 18.6,21.4 12,17.6 5.4,21.4 7.3,13.9 2.6,9 9,9 " stroke-linejoin="miter"></polygon></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662498' data-commentid="662498" data-postid="79618" data-belowelement="div-comment-662498" data-respondelement="respond" data-replyto="Reply to Sue" aria-label='Reply to Sue'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-662439" class="comment odd alt thread-odd thread-alt depth-1 parent">
<article id="div-comment-662439" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Sally</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662439"><time datetime="2023-05-30T19:18:38-05:00">05.30.23 at 7:18 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I can appreciate your perspective because I also felt the same at first. Adapting to the new website format/concept was a gradual process for me, but I’ve grown to appreciate it. The introduction of diverse and intriguing new recipes have had a positive impact on my motivation to cook and overall enjoyment of the culinary experience. I know Beth and her team are committed to continually offering fresh and exciting recipe options to inspire us. Sometimes change is needed to stretch and grow.</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662439' data-commentid="662439" data-postid="79618" data-belowelement="div-comment-662439" data-respondelement="respond" data-replyto="Reply to Sally" aria-label='Reply to Sally'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662449" class="comment byuser comment-author-monti bypostauthor even depth-2 staff">
<article id="div-comment-662449" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662449"><time datetime="2023-05-31T11:54:34-05:00">05.31.23 at 11:54 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thank you , Sally!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662449' data-commentid="662449" data-postid="79618" data-belowelement="div-comment-662449" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662381" class="comment byuser comment-author-monti bypostauthor odd alt thread-even depth-1 staff">
<article id="div-comment-662381" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662381"><time datetime="2023-05-29T11:43:16-05:00">05.29.23 at 11:43 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thank you so much, Tina! We work hard to keep our recipes approachable here. It’s one of the things I love about working for Beth. PS I LOVE that your 13-year-old is in the kitchen learning. I have a 13-year-old and have to applaud anyone that can get their kiddo away from a screen long enough to put a meal together. Your #mompower is strong!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662381' data-commentid="662381" data-postid="79618" data-belowelement="div-comment-662381" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-662352" class="comment even thread-odd thread-alt depth-1 parent">
<article id="div-comment-662352" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Sally</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662352"><time datetime="2023-05-28T13:37:58-05:00">05.28.23 at 1:37 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>I couldn’t agree more! I love Monti’s contributions and always look forward to her recipes.</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662352' data-commentid="662352" data-postid="79618" data-belowelement="div-comment-662352" data-respondelement="respond" data-replyto="Reply to Sally" aria-label='Reply to Sally'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662382" class="comment byuser comment-author-monti bypostauthor odd alt depth-2 staff">
<article id="div-comment-662382" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662382"><time datetime="2023-05-29T11:44:05-05:00">05.29.23 at 11:44 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Sally, thank you once again for being so kind. It means a lot to me.</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662382' data-commentid="662382" data-postid="79618" data-belowelement="div-comment-662382" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662351" class="comment even thread-even depth-1 parent">
<article id="div-comment-662351" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Sally</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662351"><time datetime="2023-05-28T13:36:45-05:00">05.28.23 at 1:36 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>When I was a kid, my dad made us a similar burger, and I’ve been chasing that burger all my adult life. It only took one look at this photo to know this was it!! I immediately sent it to my boyfriend (he knows my story), and he made it for us last night. Oily, crunchy, and absolutely delicious. Thank you for posting this recipe. It really made my day!</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662351' data-commentid="662351" data-postid="79618" data-belowelement="div-comment-662351" data-respondelement="respond" data-replyto="Reply to Sally" aria-label='Reply to Sally'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662379" class="comment byuser comment-author-monti bypostauthor odd alt depth-2 staff">
<article id="div-comment-662379" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662379"><time datetime="2023-05-29T11:39:22-05:00">05.29.23 at 11:39 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thanks for being here, Sally! You’ve made my day. xoxo -Monti</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662379' data-commentid="662379" data-postid="79618" data-belowelement="div-comment-662379" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
<li id="comment-662390" class="comment byuser comment-author-beth even depth-2 staff">
<article id="div-comment-662390" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Beth - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662390"><time datetime="2023-05-29T11:53:05-05:00">05.29.23 at 11:53 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>That’s so amazing!! We’re so glad these burgers hit the spot. :)</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662390' data-commentid="662390" data-postid="79618" data-belowelement="div-comment-662390" data-respondelement="respond" data-replyto="Reply to Beth - Budget Bytes" aria-label='Reply to Beth - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662321" class="comment odd alt thread-odd thread-alt depth-1 parent">
<article id="div-comment-662321" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Sars78</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662321"><time datetime="2023-05-27T10:52:10-05:00">05.27.23 at 10:52 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Excellent recipe! I wish I had 1/2 the knife skills you seem to posess;)</p>
<div class="wprm-comment-rating">
<span class="wprm-rating-stars" style="margin: 0 -3px;"><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span><span class="wprm-rating-star" style="padding: 0 3px;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 24 24"><g><path fill="#343434" d="M12.712,1.942l2.969,6.015l6.638,0.965c0.651,0.095,0.911,0.895,0.44,1.354l-4.804,4.682l1.134,6.612c0.111,0.649-0.57,1.143-1.152,0.837L12,19.286l-5.938,3.122C5.48,22.714,4.799,22.219,4.91,21.57l1.134-6.612l-4.804-4.682c-0.471-0.459-0.211-1.26,0.44-1.354l6.638-0.965l2.969-6.015C11.579,1.352,12.421,1.352,12.712,1.942z"></path></g></svg></span></span>
</div>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662321' data-commentid="662321" data-postid="79618" data-belowelement="div-comment-662321" data-respondelement="respond" data-replyto="Reply to Sars78" aria-label='Reply to Sars78'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662380" class="comment byuser comment-author-monti bypostauthor even depth-2 staff">
<article id="div-comment-662380" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662380"><time datetime="2023-05-29T11:39:52-05:00">05.29.23 at 11:39 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thank you Sars78!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662380' data-commentid="662380" data-postid="79618" data-belowelement="div-comment-662380" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662310" class="comment odd alt thread-even depth-1 parent">
<article id="div-comment-662310" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Celeste</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662310"><time datetime="2023-05-26T19:21:20-05:00">05.26.23 at 7:21 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>If you don’t like smash burgers, then why are you here? Go make burgers you like and mind your own business.</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662310' data-commentid="662310" data-postid="79618" data-belowelement="div-comment-662310" data-respondelement="respond" data-replyto="Reply to Celeste" aria-label='Reply to Celeste'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662392" class="comment byuser comment-author-monti bypostauthor even depth-2 staff">
<article id="div-comment-662392" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662392"><time datetime="2023-05-29T11:53:51-05:00">05.29.23 at 11:53 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thanks, Celeste!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662392' data-commentid="662392" data-postid="79618" data-belowelement="div-comment-662392" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662309" class="comment odd alt thread-odd thread-alt depth-1 parent">
<article id="div-comment-662309" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Big feelings</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662309"><time datetime="2023-05-26T18:41:20-05:00">05.26.23 at 6:41 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Oh buddy,<br />
Big feelings</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662309' data-commentid="662309" data-postid="79618" data-belowelement="div-comment-662309" data-respondelement="respond" data-replyto="Reply to Big feelings" aria-label='Reply to Big feelings'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662391" class="comment byuser comment-author-monti bypostauthor even depth-2 staff">
<article id="div-comment-662391" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662391"><time datetime="2023-05-29T11:53:11-05:00">05.29.23 at 11:53 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thanks, Big Feelings!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662391' data-commentid="662391" data-postid="79618" data-belowelement="div-comment-662391" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li id="comment-662306" class="comment odd alt thread-even depth-1 parent">
<article id="div-comment-662306" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Soja</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662306"><time datetime="2023-05-26T17:18:48-05:00">05.26.23 at 5:18 pm</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>You sound absolutely insufferable. Jesus if you don’t like it don’t make it. You act like it’s not normal to take a presentable photo for a food blog.</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662306' data-commentid="662306" data-postid="79618" data-belowelement="div-comment-662306" data-respondelement="respond" data-replyto="Reply to Soja" aria-label='Reply to Soja'>Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-662389" class="comment byuser comment-author-monti bypostauthor even depth-2 staff">
<article id="div-comment-662389" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<b class="fn">Monti - Budget Bytes</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.budgetbytes.com/smash-burger/comment-page-2/#comment-662389"><time datetime="2023-05-29T11:52:33-05:00">05.29.23 at 11:52 am</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Thank you, Soja!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel='nofollow' class='comment-reply-link' href='#comment-662389' data-commentid="662389" data-postid="79618" data-belowelement="div-comment-662389" data-respondelement="respond" data-replyto="Reply to Monti - Budget Bytes" aria-label='Reply to Monti - Budget Bytes'>Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
</ol><!-- .comment-list -->
<nav id="comment-nav-after" class="navigation comment-navigation" role="navigation"><h4 class="screen-reader-text">Comment navigation</h4><div class="nav-links"><div class="nav-previous"><a href="https://www.budgetbytes.com/smash-burger/comment-page-1/#comments" class="wp-block-button__link">Older Comments</a></div><div class="nav-next"></div></div></nav>
</div><!-- #comments -->
</main><aside class="sidebar-primary" role="complementary"><div class="block-area block-area-sidebar"><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="600" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Overhead shot of three Smash Burgers tucked into a tray with fries nestled around them." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner" data-no-lazy="1" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN2.jpg"></div><div class="dpsp-post-pinterest-image-hidden" style="display: none;"><img width="800" height="1200" src="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1-800x1200.jpg" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2023/05/Smash-Burger-PIN1.jpg" data-pin-title="Smash Burger" data-pin-description="If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!" alt="Side shot of a Smash Burger with a toothpick in the bun." class="skip-lazy a3-notlazy no-lazyload dpsp-post-pinterest-image-hidden-inner dpsp-post-pinterest-image-hidden-single" data-no-lazy="1"></div><span id="dpsp-post-content-markup" data-image-pin-it="true"></span><div class="block-callout logo-icon headline-callout"><h4 class="block-callout__header"><span>About Budget Bytes</span></h4><div class="block-callout__innerBlocks">
<p>As food lovers and number crunchers, we’ve decided that cooking on a budget shouldn’t mean canned beans and ramen noodles night after night. Join us for delicious recipes designed for small budgets.</p>
<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="/about/">Learn More</a></div>
</div>
</div></div>
<h2 class="wp-block-heading has-text-align-center is-style-shadow" id="h-new-here">NEW HERE?</h2>
<div class="wp-block-buttons is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex">
<div class="wp-block-button is-style-outline"><a class="wp-block-button__link wp-element-button" href="https://www.budgetbytes.com/welcome-to-budget-bytes/">Start Here</a></div>
</div>
<div style="height:16px" aria-hidden="true" class="wp-block-spacer"></div>
<section class="block-post-listing layout-gamma"><header><h2>Reader Favorite Recipes</h2></header><div class="block-post-listing__inner"><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/make-soft-boiled-eggs/" aria-label="ViewHow To Make Soft Boiled Eggs"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="a soft boiled egg cut in half on a blue background" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="a soft boiled egg cut in half on a blue background" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Perfect-Soft-Boiled-Eggs-Blue.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">How To Make Soft Boiled Eggs</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/creamy-cucumber-salad/" aria-label="ViewCreamy Cucumber Salad"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Close up overhead view of a plate full of creamy cucumber salad." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Close up overhead view of a plate full of creamy cucumber salad." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/06/Creamy-Cucumber-Salad-above.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Creamy Cucumber Salad</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/6-ways-to-upgrade-instant-ramen/" aria-label="View6 Ways to Upgrade Instant Ramen"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="An upgraded bowl of instant ramen, viewed from above, being eaten with chopsticks" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="An upgraded bowl of instant ramen, viewed from above, being eaten with chopsticks" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2015/12/6-Ways-to-Upgrade-Instant-Ramen-eating.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">6 Ways to Upgrade Instant Ramen</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/baked-chicken-drumsticks/" aria-label="ViewBaked Chicken Drumsticks"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Oven roasted chicken drumsticks on a baking sheet with tongs" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Oven roasted chicken drumsticks on a baking sheet with tongs" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/08/Baked-Chicken-Drumsticks-tongs.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Baked Chicken Drumsticks</h3></div></a></article></div><footer><a class="block-post-listing__more" href="https://www.budgetbytes.com/category/recipes/top-recipes/">More Trending Recipes</a></footer></section>
<section class="block-post-listing layout-gamma"><header><h2>Fall Recipes</h2></header><div class="block-post-listing__inner"><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/basic-chili/" aria-label="ViewClassic Homemade Chili"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Overhead view of a bowl full of chili with toppings and a spoon in the center." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Overhead view of a bowl full of chili with toppings and a spoon in the center." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2018/09/Basic-Chili-in-Bowl-1200.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Classic Homemade Chili</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/chicken-noodle-soup/" aria-label="ViewChicken Noodle Soup"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Close up overhead view of a bowl of chicken noodle soup." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-380x380.jpg 380w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-200x200.jpg 200w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-150x150.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-70x70.jpg 70w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Close up overhead view of a bowl of chicken noodle soup." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-380x380.jpg 380w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-200x200.jpg 200w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-150x150.jpg 150w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-70x70.jpg 70w, https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2017/02/Homemade-Chicken-Noodle-Soup-close-e.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Chicken Noodle Soup</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/easy-vegetable-beef-soup/" aria-label="ViewEasy Vegetable Beef Soup"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Overhead view of a bowl of vegetable beef soup." decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Overhead view of a bowl of vegetable beef soup." decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2022/04/Vegetable-Beef-Soup-bowl.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Easy Vegetable Beef Soup</h3></div></a></article><article class="post-summary post-summary--septenary"><a href="https://www.budgetbytes.com/chicken-stew/" aria-label="ViewChicken Stew"><div class="post-summary__image"><img width="160" height="160" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%20viewBox='0%200%20160%20160'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail perfmatters-lazy" alt="Close up of a pot full of chicken stew" decoding="async" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close.jpg" data-src="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg" data-srcset="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-96x96.jpg 96w" data-sizes="(max-width: 767px) 100vw, 50vw" /><noscript><img width="160" height="160" src="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg" class="attachment-thumbnail size-thumbnail" alt="Close up of a pot full of chicken stew" decoding="async" sizes="(max-width: 767px) 100vw, 50vw" srcset="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-160x160.jpg 160w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-500x500.jpg 500w, https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close-96x96.jpg 96w" data-pin-media="https://www.budgetbytes.com/wp-content/uploads/2021/10/Chicken-Stew-close.jpg"></noscript></div><div class="post-summary__content"><h3 class="post-summary__title">Chicken Stew</h3></div></a></article></div><footer><a class="block-post-listing__more" href="https://www.budgetbytes.com/category/recipes/seasonal/summer-recipes/">More Fall Recipes</a></footer></section><span class="cp-load-after-post"></span></div></aside></div></div><footer class="site-footer" role="contentinfo"><div class="wrap">
<div class="site-footer__main">
<div class="site-footer__main-icon">
<img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='100px'%20height='100px'%20viewBox='0%200%20100px%20100px'%3E%3C/svg%3E" alt="Budget Bytes Icon" width="100px" height="100px" class="perfmatters-lazy" data-src="https://www.budgetbytes.com/wp-content/uploads/2022/05/budget-bytes-icon.svg" /><noscript><img src="https://www.budgetbytes.com/wp-content/uploads/2022/05/budget-bytes-icon.svg" alt="Budget Bytes Icon" width="100px" height="100px" /></noscript>
</div>
<div class="site-footer__main-right">
<span class="site-footer__heading">
Small Budget? No Problem! </span>
<span class="site-footer__description">
<p>Cooking on a budget shouldn't mean canned beans and ramen noodles night after night. Welcome to the world of delicious recipes designed for small budgets.</p>
</span>
</div>
</div>
<div class="site-footer__menu-column site-footer__menu-column--1">
<span class="site-footer__heading">
Recipes </span>
<div class="footer-menu-wrap"><ul id="menu-footer-1" class="menu menu--footer"><li id="menu-item-70689" class="menu-item current-post-ancestor current-menu-parent current-post-parent"><a href="https://www.budgetbytes.com/category/recipes/"><span>Recipes</span></a></li>
<li id="menu-item-70690" class="menu-item"><a href="https://www.budgetbytes.com/category/how-to/"><span>How-To</span></a></li>
<li id="menu-item-70691" class="menu-item"><a href="https://www.budgetbytes.com/kitchen-basics/"><span>Kitchen Basics</span></a></li>
<li id="menu-item-70692" class="menu-item"><a href="https://www.budgetbytes.com/stock-kitchen-pantry-staples/"><span>Pantry Staples</span></a></li>
<li id="menu-item-70693" class="menu-item"><a href="https://www.budgetbytes.com/category/extra-bytes/"><span>Extra Bytes</span></a></li>
</ul></div>
</div>
<div class="site-footer__menu-column site-footer__menu-column--2">
<span class="site-footer__heading">
About </span>
<div class="footer-menu-wrap"><ul id="menu-footer-2" class="menu menu--footer"><li id="menu-item-70694" class="menu-item"><a href="https://www.budgetbytes.com/about/"><span>About Budget Bytes</span></a></li>
<li id="menu-item-70696" class="menu-item"><a href="https://www.budgetbytes.com/faq/"><span>FAQ</span></a></li>
<li id="menu-item-70695" class="menu-item"><a href="https://www.budgetbytes.com/contact/"><span>Contact</span></a></li>
</ul></div>
</div>
<div class="site-footer__menu-column site-footer__menu-column--3">
<span class="site-footer__heading">
Contact </span>
<div class="footer-menu-wrap"><ul id="menu-footer-3" class="menu menu--footer"><li id="menu-item-30066" class="social-item social-item--facebook menu-item"><a target="_blank" rel="noopener" href="http://facebook.com/budgetbytes1"><span>Facebook</span></a></li>
<li id="menu-item-30065" class="social-item social-item--pinterest menu-item"><a target="_blank" rel="noopener" href="http://www.pinterest.com/budgetbytes/"><span>Pinterest</span></a></li>
<li id="menu-item-30062" class="social-item social-item--instagram menu-item"><a target="_blank" rel="noopener" href="http://instagram.com/budgetbytes"><span>Instagram</span></a></li>
<li id="menu-item-30063" class="social-item social-item--twitter menu-item"><a target="_blank" rel="noopener" href="https://twitter.com/budget_bytes"><span>Twitter</span></a></li>
<li id="menu-item-30064" class="social-item social-item--youtube menu-item"><a target="_blank" rel="noopener" href="https://www.youtube.com/channel/UC17vdVOZBVxTSDcldUBBlRg"><span>Youtube</span></a></li>
<li id="menu-item-70698" class="social-item social-item--tiktok menu-item"><a href="https://www.tiktok.com/@budget_bytes?lang=en"><span>TikTok</span></a></li>
</ul></div>
</div>
<div class="site-footer__bottom">
<span class="site-footer__copyright">
© 2023 Budget Bytes. All rights reserved.
</span>
<div class="site-footer__links">
<a class="site-footer__links-item" href="https://www.budgetbytes.com/privacy-policy/" target="">
Privacy Policy </a>
<a class="site-footer__links-item" href="https://www.budgetbytes.com/terms-conditions/" target="">
Terms & Conditions </a>
<a class="site-footer__links-item" href="https://www.budgetbytes.com/budget-bytes-web-accessibility-policy/" target="">
Accessibility Statement </a>
<span data-acsb-custom-trigger="true" class="site-footer__links-item access-options">Accessibility Options</span>
</div>
</div>
</div></footer></div><script type="rocketlazyloadscript" async data-rocket-src="https://www.scgrocery.net/widget/"></script><div id="mv-grow-data" data-settings='{"general":{"contentSelector":false,"show_count":{"content":false,"sidebar":false,"pop_up":false,"sticky_bar":false},"isTrellis":false},"post":{"ID":79618,"categories":[{"ID":3},{"ID":12975},{"ID":10046},{"ID":10382},{"ID":6},{"ID":59},{"ID":55},{"ID":2},{"ID":10047}]},"shareCounts":[],"shouldRun":true,"utmParams":{"utm_source":"","utm_medium":"social","utm_campaign":"grow-social-pro"},"pinterest":{"pinDescriptionSource":"image_title","pinDescription":"If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!","pinTitle":"Smash Burger","pinImageURL":"https:\/\/www.budgetbytes.com\/wp-content\/uploads\/2023\/05\/Smash-Burger-PIN1.jpg","pinnableImages":"all_images","postImageHidden":"yes","postImageHiddenMultiple":"yes","lazyLoadCompatibility":"yes","buttonPosition":"top-left","buttonShape":"rectangular","showButtonLabel":null,"buttonLabelText":"","buttonShareBehavior":"all_images","hoverButtonShareBehavior":"hover_image","minimumImageWidth":"","minimumImageHeight":"","showImageOverlay":null,"postTypeDisplay":["post"],"imagePinIt":"1","hasContent":"1","shareURL":"https:\/\/www.budgetbytes.com\/smash-burger\/?utm_source=pinterest&utm_medium=social&utm_campaign=grow-social-pro","bypassClasses":["mv-grow-bypass","no_pin"],"bypassDenyClasses":["dpsp-post-pinterest-image-hidden-inner","mv-create-pinterest"],"ignoreSelectors":[],"hoverButtonIgnoreClasses":["lazyloaded","lazyload","td-animation-stack","ezlazyloaded","penci-lazy","ut-lazy","ut-image-loaded","ut-animated-image"],"disableIframes":null}}'></div><script type="rocketlazyloadscript">window.wprm_recipes = {"recipe-79692":{"id":79692,"type":"food","name":"Smash Burgers"}}</script><script type="rocketlazyloadscript"> (
function(){
var s = document.createElement('script');
var h = document.querySelector('head') || document.body;
s.src = 'https://acsbapp.com/apps/app/dist/js/app.js';
s.async = true;
s.onload = function(){
acsbJS.init({
statementLink : '', footerHtml : '',
hideMobile : true,
hideTrigger : true,
disableBgProcess : false,
language : 'en',
position : 'left',
leadColor : '#146ff8',
triggerColor : '#146ff8',
triggerRadius : '50%',
triggerPositionX : 'right',
triggerPositionY : 'bottom',
triggerIcon : 'people',
triggerSize : 'medium',
triggerOffsetX : 20,
triggerOffsetY : 20,
mobile : {
triggerSize : 'small',
triggerPositionX : 'right',
triggerPositionY : 'center',
triggerOffsetX : 10,
triggerOffsetY : 0,
triggerRadius : '50%'
}
});
};
h.appendChild(s);
})();
</script>
<div class="cpro-onload cp-popup-global cp-custom-cls-manual_trigger_53340 " data-class-id="53340" data-inactive-time='60' ></div>
<div id="cp_popup_id_53340" class="cp-popup-container cp-popup-live-wrap cp_style_53340 cp-module-modal_popup " data-style="cp_style_53340" data-module-type="modal_popup" data-class-id="53340" data-styleslug="pop-up-lightbox">
<div class="cpro-overlay">
<div class="cp-popup-wrapper cp-auto " >
<div class="cp-popup cpro-animate-container ">
<form class="cpro-form" method="post">
<input type='hidden' class='panel-settings' data-style_id= '53340' data-section='configure' value='{"enable_custom_cookies":"0","enable_cookies_class":"","enable_adblock_detection":"","enable_visitors":"1","visitor_type":"first-time","referrer_type":"hide-from","hide_custom_cookies":"0","hide_cookies_class":"subscriber_cookie","show_for_logged_in":"0","hide_on_device":"mobile","cp_hide_on_device":"mobile","cookies_enabled":"1","conversion_cookie":"365","closed_cookie":"30","cookies_enabled_submit":"1","enable_cookies_class_submit":"after_submission_popup","conversion_cookie_submit":"365","cookies_enabled_closed":"1","enable_cookies_class_closed":"30_days_close","closed_cookie_new":"30"}' ><input type='hidden' class='panel-rulesets' data-style_id= '53340' data-section='configure' value='[{"name":"Ruleset 1","autoload_on_duration":true,"load_on_duration":"45","modal_exit_intent":false,"autoload_on_scroll":false,"load_after_scroll":"75","inactivity":false,"inactivity_link":"","enable_after_post":false,"enable_custom_scroll":"0","enable_scroll_class":"","on_scroll_txt":"","show_cta_info":"","enable_custom_cookies":"0","enable_cookies_class":"","on_cookie_txt":"","hide_cta_link":"","enable_adblock_detection":false,"all_visitor_info":"","enable_visitors":"1","visitor_type":"first-time","enable_referrer":"","referrer_type":"hide-from","display_to":"","hide_from":"","enable_scheduler":false,"enable_scheduler_txt":"","start_date":"","end_date":"","custom_cls_text_head":"","enable_custom_class":false,"copy_link_code_button":"Copy Link Code","copy_link_cls_code_button":"","custom_class":"","custom_cls_text":"","autoload_on_no_page_visit":"1","load_on_page_visit_type":"is-more-than","load_on_no_page_visit":"1"}]' ><style id='cp_popup_style_53340' type='text/css'>.cp_style_53340 .cp-popup-content {font-family:Montserrat;font-style:Normal;font-weight:Normal;}.cp_style_53340 .cp-popup-content{ border-style:none;border-color:#e1e1e1;border-width:1px 1px 1px 1px;border-radius:3px 3px 3px 3px;mobile-breakpoint:767;}.cp_style_53340 #panel-1-53340 .cp-target:hover { }.cp_style_53340 #panel-1-53340 { }.cp_style_53340 .cpro-overlay{background:rgba(0,0,0,0.8);}.cp_style_53340 .cp-popup-wrapper .cpro-overlay {height:420px;}.cp_style_53340 .cp-popup-content { width:538px;height:420px;background-color:#fff;}@media ( max-width: 767px ) {.cp_style_53340 .cp-popup-content{ border-style:none;border-color:#e1e1e1;border-width:1px 1px 1px 1px;border-radius:3px 3px 3px 3px;mobile-breakpoint:767;}.cp_style_53340 #panel-1-53340 .cp-target:hover { }.cp_style_53340 #panel-1-53340 { }.cp_style_53340 .cpro-overlay{background:rgba(0,0,0,0.8);}.cp_style_53340 .cp-popup-wrapper .cpro-overlay {height:235px;}.cp_style_53340 .cp-popup-content { width:320px;height:235px;background-color:#fff;}}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field{ font-family:inherit;font-style:Inherit;font-weight:Inherit;text-transform:none;font-size:20px;letter-spacing:0;text-align:center;color:#999999;background-color:#fff;border-style:solid;border-width:2px 2px 2px 2px;border-radius:1px 1px 1px 1px;border-color:#000000;active-border-color:#666;padding:0px 10px 0px 10px;}.cp_style_53340 #form_field-53340 .cp-target:hover { }.cp_style_53340 #form_field-53340 placeholder { color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='radio'], .cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='checkbox'] {color:#999999;background-color:#fff;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field:focus {border-color: #666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-webkit-input-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-moz-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody button:hover { background :#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody .is-selected .pika-button { background :#999999;box-shadow : inset 0 1px 3px #999999;}.cp_style_53340 #form_field-53340 { }@media ( max-width: 767px ) {.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field{ font-family:inherit;font-style:Inherit;font-weight:Inherit;text-transform:none;font-size:11px;letter-spacing:0;text-align:left;color:#999999;background-color:#fff;border-style:solid;border-width:2px 2px 2px 2px;border-radius:1px 1px 1px 1px;border-color:#000000;active-border-color:#666;padding:0px 10px 0px 10px;}.cp_style_53340 #form_field-53340 .cp-target:hover { }.cp_style_53340 #form_field-53340 placeholder { color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='radio'], .cp_style_53340 .cp-popup .cpro-form .cp-form-input-field input[type='checkbox'] {color:#999999;background-color:#fff;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field:focus {border-color: #666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-webkit-input-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .cp-form-input-field::-moz-placeholder {color:#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody button:hover { background :#666;}.cp_style_53340 .cp-popup .cpro-form .pika-lendar table tbody .is-selected .pika-button { background :#999999;box-shadow : inset 0 1px 3px #999999;}.cp_style_53340 #form_field-53340 { }}.cp_style_53340 #cp_heading-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:40px;line-height:1.2;letter-spacing:0px;text-align:center;color:#2a2a2a;width:528px;height:46px;}.cp_style_53340 #cp_heading-4-53340 .cp-target:hover { }.cp_style_53340 #cp_heading-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_heading-4-53340 { left: 5px;top: 18.963073730469px;z-index:2;}@media ( max-width: 767px ) {.cp_style_53340 #cp_heading-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:22px;line-height:1.2;letter-spacing:0px;text-align:center;color:#2a2a2a;width:315px;height:26px;}.cp_style_53340 #cp_heading-4-53340 .cp-target:hover { }.cp_style_53340 #cp_heading-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_heading-4-53340 { left: 2px;top: 13px;z-index:2;}}.cp_style_53340 #cp_image-4-53340 .cp-target { width:150px;height:150px;}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-link { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-image { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target { }.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 { left: -0.01416015625px;top: 86.519897460938px;z-index:3;}@media ( max-width: 767px ) {.cp_style_53340 #cp_image-4-53340 .cp-target { width:95px;height:95px;}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_image-4-53340 .cp-target { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-link { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target > .cp-close-image { border-radius:6px 0px 20px 6px;}.cp_style_53340 #cp_image-4-53340 .cp-target { }.cp_style_53340 #cp_image-4-53340 .cp-target ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_image-4-53340 .cp-target:hover { }.cp_style_53340 #cp_image-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_image-4-53340 { left: 9px;top: 50px;z-index:3;}}.cp_style_53340 #cp_paragraph-4-53340 .cp-target { font-family:inherit;font-style:Inherit;font-weight:Inherit;font-size:18px;line-height:1.6;letter-spacing:0px;text-align:center;color:#2a2a2a;width:379px;height:120px;}.cp_style_53340 #cp_paragraph-4-53340 .cp-target:hover { }.cp_style_53340 #cp_paragraph-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_paragraph-4-53340 { left: 148.97729492188px;top: 80.539764404297px;z-index:4;}@media ( max-width: 767px ) {.cp_style_53340 #cp_paragraph-4-53340 .cp-target { font-family:inherit;font-style:Inherit;font-weight:Inherit;font-size:10px;line-height:1.6;letter-spacing:0px;text-align:center;color:#2a2a2a;width:211px;height:67px;}.cp_style_53340 #cp_paragraph-4-53340 .cp-target:hover { }.cp_style_53340 #cp_paragraph-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_paragraph-4-53340 { left: 102px;top: 50px;z-index:4;}}.cp_style_53340 #cp_email-4-53340 .cp-target { width:490px;height:50px;}.cp_style_53340 #cp_email-4-53340 .cp-target:hover { }.cp_style_53340 #cp_email-4-53340 { left: 22.911987304688px;top: 253.96304321289px;z-index:7;}@media ( max-width: 767px ) {.cp_style_53340 #cp_email-4-53340 .cp-target { width:289px;height:27px;}.cp_style_53340 #cp_email-4-53340 .cp-target:hover { }.cp_style_53340 #cp_email-4-53340 { left: 17px;top: 156px;z-index:7;}}.cp_style_53340 #cp_button-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:23px;letter-spacing:0px;text-align:center;color:#fff;background:#000000;width:490px;height:50px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { color:#fff;background:#000000;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { }.cp_style_53340 #cp_button-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-4-53340 { left: 22.911987304688px;top: 308.96304321289px;z-index:5;}@media ( max-width: 767px ) {.cp_style_53340 #cp_button-4-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:13px;letter-spacing:0px;text-align:center;color:#fff;background:#000000;width:289px;height:28px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { color:#fff;background:#000000;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-4-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-4-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-4-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-4-53340 .cp-target:hover { }.cp_style_53340 #cp_button-4-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-4-53340 { left: 17px;top: 187px;z-index:5;}}.cp_style_53340 #cp_button-5-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:12px;letter-spacing:0px;text-align:center;color:#666666;background:#ffffff;width:134px;height:25px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { color:#999999;background:#ffffff;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { }.cp_style_53340 #cp_button-5-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-5-53340 { left: 200.90905761719px;top: 366.97439575195px;z-index:9;}@media ( max-width: 767px ) {.cp_style_53340 #cp_button-5-53340 .cp-target { font-family:inherit;font-style:Bold;font-weight:Bold;font-size:13px;letter-spacing:0px;text-align:center;color:#666666;background:#ffffff;width:289px;height:28px;padding:0px 15px 0px 15px;}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { color:#999999;background:#ffffff;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-style:none;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-color:#757575;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-width:1px 1px 1px 1px;}.cp_style_53340 #cp_button-5-53340 .cp-target { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-link { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target > .cp-close-image { border-radius:0px 0px 0px 0px;}.cp_style_53340 #cp_button-5-53340 .cp-target { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-target ~ .cp-field-shadow { -webkit-box-shadow:0px 0px 0px 0px #000000;-moz-box-shadow:0px 0px 0px 0px #000000;box-shadow:0px 0px 0px 0px #000000;}.cp_style_53340 #cp_button-5-53340 .cp-rotate-wrap{ transform:rotate( 0deg);}.cp_style_53340 #cp_button-5-53340 .cp-target:hover { }.cp_style_53340 #cp_button-5-53340 .cp-target:hover ~ .cp-field-shadow { }.cp_style_53340 #cp_button-5-53340 { left: 15px;top: 239.9609375px;z-index:9;}}@media ( max-width: 767px ) {.cp_style_53340 .cp-invisible-on-mobile {display: none !important;}}</style>
<div class="cp-popup-content cpro-active-step cp-modal_popup cp-panel-1" data-entry-animation = "cp-slideInRight" data-overlay-click ="1" data-title="Pop Up Lightbox" data-module-type="modal_popup" data-step="1" data-width="538" data-mobile-width="320" data-height="420" data-mobile-height="235" data-mobile-break-pt="767" data-mobile-responsive="yes">
<div class="cpro-form-container">
<div id="cp_heading-4-53340" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_heading" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-heading tinymce" name="cp_heading-4"><p>EAT MORE, SPEND LESS.</p></div></div>
</div><div id="cp_image-4-53340" class="cp-field-html-data cp-none cp-image-ratio" data-type="cp_image" data-action="none" data-step="1" >
<div class="cp-rotate-wrap">
<div class="cp-image-main"><img width="150" height="150" data-cp-src="https://www.budgetbytes.com/wp-content/uploads/2018/12/subscribe_icon-1.png" class="cp-img-lazy cp-target cp-field-element cp-image" name="cp_image-4" alt="" src="">
<div class="cp-field-shadow"></div>
</div>
</div>
</div><div id="cp_paragraph-4-53340" class="cp-field-html-data cp-none cp_has_editor" data-type="cp_paragraph" data-field-title="Paragraph" ><div class="cp-rotate-wrap"><div class="cp-target cp-field-element cp-paragraph tinymce" name="{{name}}"><p><strong>Sign up</strong> for our newsletter and you'll get new content delivered by email weekly, helpful tips, PLUS my <strong>FREE 14 Day Pantry Meal Plan!</strong> </p></div></div>
</div><div id="cp_email-4-53340" class="cp-field-html-data cp-none" data-type="cp_email" >
<input type="email" class="cp-target cp-field-element cp-form-input-field cp-form-field cp-email cp-form-field cp-email-field" aria-label="Email Address" placeholder="Email Address" name="param[email]" value="" required="required" data-email-error-msg="{{email-error}}" autocomplete="on" />
</div><div id="cp_button-4-53340" class="cp-field-html-data cp-none" data-type="cp_button" data-action="submit_n_goto_url" data-step="1" data-redirect="https://www.budgetbytes.com/email-subscription-confirmation/?utm_source=lightbox&utm_medium=confirmation&utm_term=popup" data-redirect-target="_self" >
<div class="cp-rotate-wrap"><button type="submit" class=" cp-target cp-field-element cp-button cp-button-field" data-success-message="" data-get-param="false">Join Us!</button>
<div class="cp-btn-tooltip"></div>
</div></div><div id="cp_button-5-53340" class="cp-field-html-data cp-none" data-type="cp_button" data-action="close" data-step="1" >
<div class="cp-rotate-wrap"><button type="button" class=" cp-target cp-field-element cp-button cp-button-field" data-success-message="" data-get-param="false">no thanks (close)</button>
<div class="cp-btn-tooltip"></div>
</div></div> </div>
</div><!-- .cp-popup-content -->
<input type="hidden" name="param[date]" value="10.07.23" />
<input type='text' class='cpro-hp-field' name='cpro_hp_field_53340' value=''>
<input type="hidden" name="action" value="cp_v2_add_subscriber" />
<input type="hidden" name="style_id" value="53340" />
</form>
</div>
</div><!-- .cp-popup-wrapper -->
</div><!-- Overlay -->
</div><!-- Modal popup container -->
<!-- Custom Feeds for Instagram JS -->
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
var sbiajaxurl = "https://www.budgetbytes.com/wp-admin/admin-ajax.php";
window.sbi_custom_js = function(){
$ = jQuery;
jQuery('.sbi_item').each(function() {
var $item = jQuery(this);
var srcSet = JSON.parse($item.find('.sbi_photo').attr('data-img-src-set').replace(///g, '/'));
if (typeof srcSet[150] !== 'undefined' && $item.find('.sbi_photo img').attr('data-lazy-src').indexOf('placeholder') > -1) {
$item.find('.sbi_photo img').attr('src', srcSet[150]);
$item.find('.sbi_photo').css('background-image', 'url(' + srcSet[150] + ')');
}
});}
</script>
<!-- YouTube Feed JS -->
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
</script>
<link rel='stylesheet' id='gravity_forms_theme_reset-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-reset.min.css?ver=2.7.14' media='all' />
<link rel='stylesheet' id='gravity_forms_theme_foundation-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-foundation.min.css?ver=2.7.14' media='all' />
<link data-minify="1" rel='stylesheet' id='gravity_forms_theme_framework-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-framework.min.css?ver=1696258883' media='all' />
<link rel='stylesheet' id='gravity_forms_orbital_theme-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-orbital-theme.min.css?ver=2.7.14' media='all' />
<link data-minify="1" rel='stylesheet' id='wprm-public-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='wprmp-public-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='block-acf-callout-block-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/inc/blocks/callout/block-callout.css?ver=1696258883' media='all' />
<link data-minify="1" rel='stylesheet' id='gform_basic-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/gravityforms/assets/css/dist/basic.min.css?ver=1696258883' media='all' />
<link rel='stylesheet' id='gform_theme_components-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/theme-components.min.css?ver=2.7.14' media='all' />
<link rel='stylesheet' id='gform_theme_ie11-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/theme-ie11.min.css?ver=2.7.14' media='all' />
<link rel='stylesheet' id='gform_theme-css' href='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/css/dist/theme.min.css?ver=2.7.14' media='all' />
<link data-minify="1" rel='stylesheet' id='block-acf-email-subscribe-css' href='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/inc/blocks/email-subscribe/block-email-subscribe.css?ver=1696258883' media='all' />
<style id='core-block-supports-inline-css'>
.wp-container-4.wp-container-4{justify-content:center;}
</style>
<script type="rocketlazyloadscript" id="dpsp-frontend-js-pro-js-before">
var dpsp_pin_button_data = {"pin_description_source":"image_title","pinterest_pinnable_images":"all_images","pinterest_button_share_behavior":"all_images","post_pinterest_image_hidden":"yes","post_multiple_hidden_pinterest_images":"yes","lazy_load_compatibility":"yes","button_position":"top_left","button_shape":"rectangular","minimum_image_width":"","minimum_image_height":"","button_text_label":"","button_share_behavior":"hover_image","post_type_display":["post"],"pinterest_title":"Smash Burger","pinterest_description":"If you love a meaty, juicy burger patty with loads of crispy edges and charred crooks and crannies, this Smash Burger recipe is for you!","pinterest_image_url":"https:\/\/www.budgetbytes.com\/wp-content\/uploads\/2023\/05\/Smash-Burger-PIN1.jpg"}
</script>
<script data-minify="1" async data-noptimize src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/social-pug/assets/dist/front-end-pro.2.16.4.js?ver=1696258883' id='dpsp-frontend-js-pro-js'></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id='rocket-preload-links-js-extra'>
var RocketPreloadLinksConfig = {"excludeUris":"\/login\/|\/register|\/lostpassword|\/resetpass|\/resetpass\/|\/web-stories\/|\/random|\/instagram\/|\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/www.budgetbytes.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script data-minify="1" src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/assets/js/global.js?ver=1696258883' id='global-js'></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/themes/budgetbytes-2022/assets/js/theme.js?ver=1696258883' id='theme-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/comment-reply.min.js?ver=6.3.1' id='comment-reply-js' defer></script>
<script id="perfmatters-lazy-load-js-before">
window.lazyLoadOptions={elements_selector:"img[data-src],.perfmatters-lazy,.perfmatters-lazy-css-bg",thresholds:"100px 0px",class_loading:"pmloading",class_loaded:"pmloaded",callback_loaded:function(element){if(element.tagName==="IFRAME"){if(element.classList.contains("pmloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}};window.addEventListener("LazyLoad::Initialized",function(e){var lazyLoadInstance=e.detail.instance;});
</script>
<script async src='https://www.budgetbytes.com/wp-content/plugins/perfmatters/js/lazyload.min.js?ver=2.1.7' id='perfmatters-lazy-load-js'></script>
<script id='wprm-public-js-extra'>
var wprm_public = {"endpoints":{"analytics":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/analytics"},"settings":{"features_comment_ratings":true,"template_color_comment_rating":"#fcc51c","instruction_media_toggle_default":"on","video_force_ratio":false,"analytics_enabled":false,"google_analytics_enabled":false,"print_new_tab":true},"post_id":"79618","home_url":"https:\/\/www.budgetbytes.com\/","print_slug":"wprm_print","permalinks":"\/%postname%\/","ajax_url":"https:\/\/www.budgetbytes.com\/wp-admin\/admin-ajax.php","nonce":"143c377f3b","api_nonce":"eea9814ebd","translations":{"Select a collection":"Select a collection","Select a column":"Select a column","Select a group":"Select a group","Shopping List":"Shopping List","Print":"Print","Print Collection":"Print Collection","Print Recipes":"Print Recipes","Hide Nutrition Facts":"Hide Nutrition Facts","Show Nutrition Facts":"Show Nutrition Facts","Are you sure you want to remove all items from this collection?":"Are you sure you want to remove all items from this collection?","Clear Items":"Clear Items","Description for this collection:":"Description for this collection:","Change Description":"Change Description","Set Description":"Set Description","Save to my Collections":"Save to my Collections","None":"None","Blue":"Blue","Red":"Red","Green":"Green","Yellow":"Yellow","Note":"Note","Color":"Color","Name":"Name","Ingredients":"Ingredients","cup":"cup","olive oil":"olive oil","Add Ingredient":"Add Ingredient","Edit Ingredients":"Edit Ingredients","Text":"Text","Nutrition Facts (per serving)":"Nutrition Facts (per serving)","Add Column":"Add Column","Edit Columns":"Edit Columns","Add Group":"Add Group","Edit Groups":"Edit Groups","Add Item":"Add Item","Remove Items":"Remove Items","Columns & Groups":"Columns & Groups","Remove All Items":"Remove All Items","Stop Removing Items":"Stop Removing Items","Actions":"Actions","Click to add:":"Click to add:","Drag and drop to add:":"Drag and drop to add:","Load more...":"Load more...","Search Recipes":"Search Recipes","Search Ingredients":"Search Ingredients","Add Custom Recipe":"Add Custom Recipe","Add Note":"Add Note","Add from Collection":"Add from Collection","Start typing to search...":"Start typing to search...","Your Collections":"Your Collections","Editing User":"Editing User","Cancel":"Cancel","Go Back":"Go Back","Edit Item":"Edit Item","Change Name":"Change Name","Move Left":"Move Left","Move Right":"Move Right","Duplicate":"Duplicate","Delete Column":"Delete Column","Are you sure you want to delete?":"Are you sure you want to delete?","Click to set name":"Click to set name","Set a new amount for this ingredient:":"Set a new amount for this ingredient:","Set the number of servings":"Set the number of servings","servings":"servings","View Recipe":"View Recipe","Edit Custom Recipe":"Edit Custom Recipe","Edit Note":"Edit Note","Duplicate Item":"Duplicate Item","Change Servings":"Change Servings","Remove Item":"Remove Item","Move Up":"Move Up","Move Down":"Move Down","Delete Group":"Delete Group","Nutrition Facts":"Nutrition Facts","Click to confirm...":"Click to confirm...","Are you sure you want to delete all items in":"Are you sure you want to delete all items in","Stop Editing":"Stop Editing","Recipe":"Recipe","Regenerate Shopping List":"Regenerate Shopping List","Print Shopping List":"Print Shopping List","The link copied to your clipboard will allow others to edit this shopping list.":"The link copied to your clipboard will allow others to edit this shopping list.","Copy this link to allow others to edit this shopping list:":"Copy this link to allow others to edit this shopping list:","Share Edit Link":"Share Edit Link","Save Shopping List":"Save Shopping List","Edit Shopping List":"Edit Shopping List","Generate Shopping List":"Generate Shopping List","Remove All":"Remove All","Shopping List Options":"Shopping List Options","Include ingredient notes":"Include ingredient notes","Preferred Unit System":"Preferred Unit System","Deselect all":"Deselect all","Select all":"Select all","Collection":"Collection","Unnamed":"Unnamed","remove":"remove","There are unsaved changes. Are you sure you want to leave this page?":"There are unsaved changes. Are you sure you want to leave this page?","Make sure to select some recipes for the shopping list first.":"Make sure to select some recipes for the shopping list first.","Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.":"Are you sure you want to generate a new shopping list for this collection? You will only be able to access this shopping list again with the share link.","The shopping list could not be saved. Try again later.":"The shopping list could not be saved. Try again later.","Are you sure you want to remove all recipes from this shopping list?":"Are you sure you want to remove all recipes from this shopping list?","Back":"Back","Make sure to save the shopping list before printing.":"Make sure to save the shopping list before printing.","No recipes have been added to the shopping list yet.":"No recipes have been added to the shopping list yet.","Click the cart icon in the top right to generate the shopping list.":"Click the cart icon in the top right to generate the shopping list.","Select recipes and click the cart icon in the top right to generate the shopping list.":"Select recipes and click the cart icon in the top right to generate the shopping list.","Click the cart icon in the top right to generate a new shopping list.":"Click the cart icon in the top right to generate a new shopping list.","Right click and copy this link to allow others to edit this shopping list.":"Right click and copy this link to allow others to edit this shopping list.","List":"List","Are you sure you want to delete this group, and all of the items in it?":"Are you sure you want to delete this group, and all of the items in it?","Your shopping list is empty.":"Your shopping list is empty.","Group":"Group","Add Collection":"Add Collection","Empty Collection":"Empty Collection","Add Pre-made Collection":"Add Pre-made Collection","Edit Collections":"Edit Collections","Select a collection to add for this user":"Select a collection to add for this user","Add Saved Collection":"Add Saved Collection","Delete":"Delete","Recipes":"Recipes","Decrease serving size by 1":"Decrease serving size by 1","Increase serving size by 1":"Increase serving size by 1","Nothing to add products to yet.":"Nothing to add products to yet.","In recipe":"In recipe","Product":"Product","Amount needed":"Amount needed","Change Product":"Change Product","A name is required for this saved nutrition ingredient.":"A name is required for this saved nutrition ingredient.","Save a new Custom Ingredient":"Save a new Custom Ingredient","Amount":"Amount","Unit":"Unit","Name (required)":"Name (required)","Save for Later & Use":"Save for Later & Use","Use":"Use","Select a saved ingredient":"Select a saved ingredient","Match this equation to get the correct amounts:":"Match this equation to get the correct amounts:","Cancel Calculation":"Cancel Calculation","Go to Next Step":"Go to Next Step","Use These Values":"Use These Values","Nutrition Calculation":"Nutrition Calculation","n\/a":"n\/a","Values of all the checked ingredients will be added together and":"Values of all the checked ingredients will be added together and","divided by":"divided by","the number of servings for this recipe.":"the number of servings for this recipe.","Values of all the checked ingredients will be added together.":"Values of all the checked ingredients will be added together.","API Ingredients":"API Ingredients","Custom Ingredients":"Custom Ingredients","Recipe Nutrition Facts Preview":"Recipe Nutrition Facts Preview","Changes to these values can be made after confirming with the blue button.":"Changes to these values can be made after confirming with the blue button.","Select or search for a saved ingredient":"Select or search for a saved ingredient","No ingredients set for this recipe.":"No ingredients set for this recipe.","Used in Recipe":"Used in Recipe","Used for Calculation":"Used for Calculation","Nutrition Source":"Nutrition Source","Match & Units":"Match & Units","API":"API","Saved\/Custom":"Saved\/Custom","no match found":"no match found","Units n\/a":"Units n\/a","Find a match for:":"Find a match for:","Search":"Search","No ingredients found for":"No ingredients found for","No ingredients found.":"No ingredients found.","Results for":"Results for","Editing Equipment Affiliate Fields":"Editing Equipment Affiliate Fields","The fields you set here will affect all recipes using this equipment.":"The fields you set here will affect all recipes using this equipment.","Regular Links":"Regular Links","Images":"Images","HTML Code":"HTML Code","Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.":"Images and HTML code only show up when the Equipment block is set to the \"Images\" display style in the Template Editor.","Save Changes":"Save Changes","other recipe(s) affected":"other recipe(s) affected","This can affect other recipes":"This can affect other recipes","Edit Link":"Edit Link","Remove Link":"Remove Link","Are you sure you want to delete this link?":"Are you sure you want to delete this link?","Set Affiliate Link":"Set Affiliate Link","Edit Image":"Edit Image","Remove Image":"Remove Image","Add Image":"Add Image","This feature is only available in":"This feature is only available in","You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.":"You need to set up this feature on the WP Recipe Maker > Settings > Unit Conversion page first.","Original Unit System for this recipe":"Original Unit System for this recipe","Use Default":"Use Default","First Unit System":"First Unit System","Second Unit System":"Second Unit System","Conversion":"Conversion","Converted":"Converted","Original":"Original","Convert All Automatically":"Convert All Automatically","Convert":"Convert","Keep Unit":"Keep Unit","Automatically":"Automatically","Weight Units":"Weight Units","Volume Units":"Volume Units","Convert...":"Convert...","Ingredient Link Type":"Ingredient Link Type","Global: the same link will be used for every recipe with this ingredient":"Global: the same link will be used for every recipe with this ingredient","Custom: these links will only affect the recipe below":"Custom: these links will only affect the recipe below","Use Global Links":"Use Global Links","Custom Links for this Recipe only":"Custom Links for this Recipe only","Edit Global Links":"Edit Global Links","Affiliate Link":"Affiliate Link","No link set":"No link set","No equipment set for this recipe.":"No equipment set for this recipe.","Regular Link":"Regular Link","Image":"Image","Edit Affiliate Fields":"Edit Affiliate Fields","No HTML set":"No HTML set","Editing Global Ingredient Links":"Editing Global Ingredient Links","All fields are required.":"All fields are required.","Something went wrong. Make sure this key does not exist yet.":"Something went wrong. Make sure this key does not exist yet.","Are you sure you want to close without saving changes?":"Are you sure you want to close without saving changes?","Editing Custom Field":"Editing Custom Field","Creating new Custom Field":"Creating new Custom Field","Type":"Type","Key":"Key","my-custom-field":"my-custom-field","My Custom Field":"My Custom Field","Save":"Save","Editing Product":"Editing Product","Setting Product":"Setting Product","Product ID":"Product ID","No product set yet":"No product set yet","Product Name":"Product Name","Unset Product":"Unset Product","Search for products":"Search for products","No products found":"No products found","A label and key are required.":"A label and key are required.","Editing Nutrient":"Editing Nutrient","Creating new Nutrient":"Creating new Nutrient","Custom":"Custom","Calculated":"Calculated","my-custom-nutrient":"my-custom-nutrient","Label":"Label","My Custom Nutrient":"My Custom Nutrient","mg":"mg","Daily Need":"Daily Need","Calculation":"Calculation","Learn more":"Learn more","Decimal Precision":"Decimal Precision","Order":"Order","Loading...":"Loading...","Editing Nutrition Ingredient":"Editing Nutrition Ingredient","Creating new Nutrition Ingredient":"Creating new Nutrition Ingredient","Are you sure you want to overwrite the existing values?":"Are you sure you want to overwrite the existing values?","Import values from recipe":"Import values from recipe","Cancel import":"Cancel import","Use this recipe":"Use this recipe","Sort:":"Sort:","Filter:":"Filter:","Edit Recipe Submission":"Edit Recipe Submission","Approve Submission":"Approve Submission","Approve Submission & Add to new Post":"Approve Submission & Add to new Post","Delete Recipe Submission":"Delete Recipe Submission","Are you sure you want to delete":"Are you sure you want to delete","ID":"ID","Date":"Date","User":"User","Edit Nutrient":"Edit Nutrient","Delete Custom Nutrient":"Delete Custom Nutrient","Active":"Active","View and edit collections for this user":"View and edit collections for this user","User ID":"User ID","Display Name":"Display Name","Email":"Email","# Collections":"# Collections","Show All":"Show All","Has Saved Collections":"Has Saved Collections","Does not have Saved Collections":"Does not have Saved Collections","# Items in Inbox":"# Items in Inbox","# Items in Collections":"# Items in Collections","Your Custom Fields":"Your Custom Fields","Custom Field":"Custom Field","Custom Fields":"Custom Fields","Custom Nutrition Ingredient":"Custom Nutrition Ingredient","Custom Nutrition":"Custom Nutrition","Custom Nutrient":"Custom Nutrient","Custom Nutrients":"Custom Nutrients","Features":"Features","Saved Collection":"Saved Collection","Saved Collections":"Saved Collections","User Collection":"User Collection","User Collections":"User Collections","Recipe Submissions":"Recipe Submissions","Recipe Submission":"Recipe Submission","Edit Field":"Edit Field","Delete Field":"Delete Field","Edit Custom Ingredient":"Edit Custom Ingredient","Delete Custom Ingredient":"Delete Custom Ingredient","Edit Saved Collection":"Edit Saved Collection","Reload Recipes":"Reload Recipes","Duplicate Saved Collection":"Duplicate Saved Collection","Delete Saved Collection":"Delete Saved Collection","Description":"Description","Default":"Default","Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.":"Enable to make this a default collection for new users. Does not affect those who have used the collections feature before.","Push to All":"Push to All","Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.":"Enable to push this collection to everyone using the collections feature. Will affect both new and existing users and add this collection to their list.","Template":"Template","Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".":"Enable to make this saved collection show up as an option after clicking \"Add Collection\". This would usually be an empty collection with a specific structure like \"Empty Week Plan\".","Quick Add":"Quick Add","Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.":"Enable to make this saved collection show up after clicking on \"Add Pre-made Collection\". Can be used to give users easy access to the meal plans you create.","What do you want the new order to be?":"What do you want the new order to be?","Save Collection Link":"Save Collection Link","# Items":"# Items"}};
</script>
<script data-minify="1" src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker/dist/public-modern.js?ver=1696258883' id='wprm-public-js' defer></script>
<script id='wprmp-public-js-extra'>
var wprmp_public = {"endpoints":{"private_notes":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/private-notes","collections":"https:\/\/www.budgetbytes.com\/wp-json\/wp\/v2\/wprm_collection","collections_helper":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/recipe-collections","nutrition":"https:\/\/www.budgetbytes.com\/wp-json\/wp-recipe-maker\/v1\/nutrition"},"settings":{"recipe_template_mode":"modern","features_adjustable_servings":true,"adjustable_servings_round_to_decimals":"2","unit_conversion_remember":true,"unit_conversion_temperature":"none","unit_conversion_system_1_temperature":"F","unit_conversion_system_2_temperature":"C","unit_conversion_advanced_servings_conversion":false,"unit_conversion_system_1_length_unit":"inch","unit_conversion_system_2_length_unit":"cm","fractions_enabled":false,"fractions_use_mixed":true,"fractions_use_symbols":true,"fractions_max_denominator":"8","unit_conversion_system_1_fractions":true,"unit_conversion_system_2_fractions":true,"unit_conversion_enabled":true,"decimal_separator":"point","features_comment_ratings":true,"features_user_ratings":false,"user_ratings_thank_you_message":"Thank you for voting!","user_ratings_force_comment":"never","user_ratings_force_comment_scroll_to":"","servings_changer_display":"text_field","template_ingredient_list_style":"disc","template_instruction_list_style":"decimal","template_color_icon":"#343434","recipe_collections_scroll_to_top":true,"recipe_collections_scroll_to_top_offset":"30"},"timer":{"sound_file":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/wp-recipe-maker-premium\/assets\/sounds\/alarm.mp3","text":{"start_timer":"Click to Start Timer"},"icons":{"pause":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M9,2H4C3.4,2,3,2.4,3,3v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C10,2.4,9.6,2,9,2z\"\/><path fill=\"#fffefe\" d=\"M20,2h-5c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h5c0.6,0,1-0.4,1-1V3C21,2.4,20.6,2,20,2z\"\/><\/g><\/svg>","play":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M6.6,2.2C6.3,2,5.9,1.9,5.6,2.1C5.2,2.3,5,2.6,5,3v18c0,0.4,0.2,0.7,0.6,0.9C5.7,22,5.8,22,6,22c0.2,0,0.4-0.1,0.6-0.2l12-9c0.3-0.2,0.4-0.5,0.4-0.8s-0.1-0.6-0.4-0.8L6.6,2.2z\"\/><\/g><\/svg>","close":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g ><path fill=\"#fffefe\" d=\"M22.7,4.3l-3-3c-0.4-0.4-1-0.4-1.4,0L12,7.6L5.7,1.3c-0.4-0.4-1-0.4-1.4,0l-3,3c-0.4,0.4-0.4,1,0,1.4L7.6,12l-6.3,6.3c-0.4,0.4-0.4,1,0,1.4l3,3c0.4,0.4,1,0.4,1.4,0l6.3-6.3l6.3,6.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l3-3c0.4-0.4,0.4-1,0-1.4L16.4,12l6.3-6.3C23.1,5.3,23.1,4.7,22.7,4.3z\"\/><\/g><\/svg>"}},"recipe_submission":{"max_file_size":1073741824,"text":{"image_size":"The image file is too large"}},"collections":{"default":{"inbox":{"id":0,"name":"Inbox","nbrItems":0,"columns":[{"id":0,"name":"Recipes"}],"groups":[{"id":0,"name":""}],"items":{"0-0":[]}},"user":[]}},"user":"0","add_to_collection":{"access":"everyone","behaviour":"inbox","placement":"bottom","not_logged_in":"hide","not_logged_in_redirect":"","not_logged_in_tooltip":"","collections":{"inbox":"Inbox","user":[]}},"quick_access_shopping_list":{"access":"everyone"}};
</script>
<script data-minify="1" src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/wp-recipe-maker-premium/dist/public-elite.js?ver=1696258883' id='wprmp-public-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js?ver=3.1.2' id='wp-polyfill-inert-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.11' id='regenerator-runtime-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0' id='wp-polyfill-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/dom-ready.min.js?ver=392bdd43726760d1f3ca' id='wp-dom-ready-js' defer></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/hooks.min.js?ver=c6aec9a8d4e5a5d543a1' id='wp-hooks-js'></script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/i18n.min.js?ver=7701b0c3857f914212ef' id='wp-i18n-js'></script>
<script type="rocketlazyloadscript" id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script type="rocketlazyloadscript" data-rocket-src='https://www.budgetbytes.com/wp-includes/js/dist/a11y.min.js?ver=7032343a947cfccf5608' id='wp-a11y-js' defer></script>
<script defer='defer' src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/js/jquery.json.min.js?ver=2.7.14' id='gform_json-js'></script>
<script id='gform_gravityforms-js-extra'>
var gform_i18n = {"datepicker":{"days":{"monday":"Mo","tuesday":"Tu","wednesday":"We","thursday":"Th","friday":"Fr","saturday":"Sa","sunday":"Su"},"months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"firstDay":1,"iconText":"Select date"}};
var gf_legacy_multi = [];
var gform_gravityforms = {"strings":{"invalid_file_extension":"This type of file is not allowed. Must be one of the following:","delete_file":"Delete this file","in_progress":"in progress","file_exceeds_limit":"File exceeds size limit","illegal_extension":"This type of file is not allowed.","max_reached":"Maximum number of files reached","unknown_error":"There was a problem while saving the file on the server","currently_uploading":"Please wait for the uploading to complete","cancel":"Cancel","cancel_upload":"Cancel this upload","cancelled":"Cancelled"},"vars":{"images_url":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms\/images"}};
var gf_global = {"gf_currency_config":{"name":"U.S. Dollar","symbol_left":"$","symbol_right":"","symbol_padding":"","thousand_separator":",","decimal_separator":".","decimals":2,"code":"USD"},"base_url":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms","number_formats":[],"spinnerUrl":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg","version_hash":"9332dbcd44975482ef1e2d947a00716d","strings":{"newRowAdded":"New row added.","rowRemoved":"Row removed","formSaved":"The form has been saved. The content contains the link to return and complete the form."}};
</script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/js/gravityforms.min.js?ver=2.7.14' id='gform_gravityforms-js'></script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/js/placeholders.jquery.min.js?ver=2.7.14' id='gform_placeholder-js'></script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/js/dist/utils.min.js?ver=59d951b75d934ae23e0ea7f9776264aa' id='gform_gravityforms_utils-js'></script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.js?ver=4ef53fe41c14a48b294541d9fc37387e' id='gform_gravityforms_theme_vendors-js'></script>
<script id='gform_gravityforms_theme-js-extra'>
var gform_theme_config = {"common":{"form":{"honeypot":{"version_hash":"9332dbcd44975482ef1e2d947a00716d"}}},"hmr_dev":"","public_path":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/gravityforms\/assets\/js\/dist\/"};
</script>
<script type="rocketlazyloadscript" defer='defer' data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.js?ver=f4d12a887a23a8c5755fd2b956bc8fcf' id='gform_gravityforms_theme-js'></script>
<script type="rocketlazyloadscript" data-minify="1" defer data-rocket-src='https://www.budgetbytes.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1696258883' id='akismet-frontend-js'></script>
<script id='cp-popup-script-js-extra'>
var cp_ajax = {"url":"https:\/\/www.budgetbytes.com\/wp-admin\/admin-ajax.php","ajax_nonce":"1b31274888","assets_url":"https:\/\/www.budgetbytes.com\/wp-content\/plugins\/convertpro\/assets\/","not_connected_to_mailer":"This form is not connected with any mailer service! Please contact web administrator.","timer_labels":"Years,Months,Weeks,Days,Hours,Minutes,Seconds","timer_labels_singular":"Year,Month,Week,Day,Hour,Minute,Second","image_on_ready":"1","cpro_mx_valid":"0","invalid_email_id":"Invalid Email Address!"};
var cp_pro = {"inactive_time":"60"};
var cp_pro_url_cookie = {"days":"30"};
var cp_v2_ab_tests = {"cp_v2_ab_tests_object":[]};
</script>
<script type="rocketlazyloadscript" defer="defer" data-rocket-src='https://www.budgetbytes.com/wp-content/plugins/convertpro/assets/modules/js/cp-popup.min.js?ver=1.7.7' id='cp-popup-script-js'></script>
<script type="rocketlazyloadscript" data-rocket-type="text/javascript">
jQuery(document).on( "cp_after_form_submit", function( e, element, response
, style_slug ) {
if( false == response.data.error ) {
if( 'undefined' !== typeof response.data['cfox_data'] ) {
var form_data = JSON.parse( response.data['cfox_data'] );
form_data.overwrite_tags = false;
if( 'undefined' !== typeof convertfox ) {
convertfox.identify( form_data );
}
}
}
});
</script>
<svg style="display:none;"><defs><symbol id="utility-menu3"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 16a1 1 0 01.117 1.993L14 18H4a1 1 0 01-.117-1.993L4 16h10zm4-5a1 1 0 01.117 1.993L18 13H4a1 1 0 01-.117-1.993L4 11h14zm2-5a1 1 0 01.117 1.993L20 8H4a1 1 0 01-.117-1.993L4 6h16z"/></symbol><symbol id="utility-close"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M17.786 7.62l-.079.087L13.415 12l4.292 4.293a1 1 0 01-1.32 1.497l-.094-.083L12 13.415l-4.293 4.292a1 1 0 01-1.497-1.32l.083-.094L10.585 12 6.293 7.707a1 1 0 011.32-1.497l.094.083L12 10.585l4.293-4.292.087-.08c.88-.729 2.08.419 1.473 1.318l-.067.09z"/></symbol><symbol id="utility-search-fat"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11 3a8 8 0 016.32 12.905L20.415 19a1 1 0 01-1.32 1.497L19 20.414l-3.095-3.093A8 8 0 1111 3zm0 2a6 6 0 100 12 6 6 0 000-12z"/></symbol><symbol id="utility-pinterest"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12.009 1C5.929 1 1 5.921 1 11.991c0 4.659 2.9 8.639 6.995 10.24-.1-.868-.181-2.207.036-3.157.2-.86 1.287-5.464 1.287-5.464s-.326-.66-.326-1.628c0-1.529.888-2.669 1.993-2.669.942 0 1.396.706 1.396 1.547 0 .941-.598 2.352-.916 3.664-.262 1.094.553 1.99 1.631 1.99 1.958 0 3.462-2.063 3.462-5.03 0-2.632-1.894-4.468-4.603-4.468-3.135 0-4.975 2.343-4.975 4.767 0 .94.363 1.954.816 2.506.09.108.1.208.072.316-.081.344-.272 1.095-.308 1.249-.045.199-.163.244-.371.144-1.378-.642-2.238-2.641-2.238-4.26 0-3.465 2.519-6.65 7.275-6.65 3.815 0 6.787 2.715 6.787 6.351 0 3.79-2.392 6.839-5.708 6.839-1.115 0-2.166-.579-2.52-1.266l-.688 2.614c-.244.959-.915 2.153-1.368 2.886 1.033.316 2.12.488 3.262.488C18.07 23 23 18.079 23 12.009 23.018 5.921 18.089 1 12.009 1z"/></symbol><symbol id="utility-facebook"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M23 12.067C23 5.955 18.075 1 12 1S1 5.955 1 12.067C1 17.592 5.022 22.17 10.281 23v-7.733H7.488v-3.2h2.793V9.63c0-2.773 1.643-4.305 4.155-4.305 1.204 0 2.463.215 2.463.215v2.724h-1.387c-1.367 0-1.793.853-1.793 1.728v2.076h3.05l-.487 3.2h-2.563V23C18.978 22.17 23 17.592 23 12.067"/></symbol><symbol id="utility-twitter"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M24 4.368a9.705 9.705 0 01-2.828.796 5.045 5.045 0 002.165-2.794 9.685 9.685 0 01-3.127 1.225A4.86 4.86 0 0016.616 2c-2.72 0-4.924 2.261-4.924 5.05 0 .396.043.78.127 1.15C7.728 7.99 4.1 5.98 1.672 2.926a5.111 5.111 0 00-.667 2.538 5.08 5.08 0 002.19 4.2 4.822 4.822 0 01-2.23-.63v.064c0 2.446 1.696 4.486 3.95 4.95a4.853 4.853 0 01-1.297.178c-.318 0-.626-.032-.926-.092.626 2.006 2.445 3.466 4.598 3.507A9.721 9.721 0 010 19.732 13.688 13.688 0 007.548 22c9.057 0 14.01-7.694 14.01-14.365 0-.22-.006-.436-.015-.653A10.155 10.155 0 0024 4.37v-.001z"/></symbol><symbol id="utility-email1"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20 4c.8 0 1.527.313 2.064.823.036.03.071.064.104.1l.02.024A2.99 2.99 0 0123 7v10a2.99 2.99 0 01-.826 2.067.75.75 0 01-.05.056l-.057.051A2.99 2.99 0 0120 20H4a2.988 2.988 0 01-1.902-.68.919.919 0 01-.13-.106l-.051-.055A2.991 2.991 0 011 17V7c0-.787.303-1.503.799-2.038a1.007 1.007 0 01.16-.162A2.996 2.996 0 014 4zm-5.396 9.018l-1.275 1.139a2 2 0 01-2.522.11l-.138-.112-1.264-1.131L4.548 18h15.037l-4.981-4.982zM3 7.297v9.426l4.913-5.033L3 7.297zm18 .009l-4.902 4.378L21 16.585V7.306zM19.459 6H4.55l5.413 4.84c.033.025.066.053.097.083l.015.018 1.924 1.721 1.893-1.692a1.016 1.016 0 01.167-.15l5.4-4.82z"/></symbol></defs></svg><style type="text/css">.wprm-recipe.wprm-recipe-template-2022--nutrition-disclaimer {
overflow: visible;
}
.bb-recipe-card {
border: 2px solid var(--wp--preset--color--secondary);
box-shadow: 4px 4px 0 var(--wp--preset--color--primary);
margin-top: 70px;
padding: 20px;
position: relative;
}
@media (max-width: 600px) {
.bb-recipe-card {
padding: 14px;
}
}
.bb-recipe-card h3 {
font-size: var(--wp--preset--font-size--big);
text-transform: uppercase;
margin-top: 40px;
margin-bottom: var(--wp--custom--layout--block-gap);
}
.bb-recipe-card h4 {
font-size: var(--wp--preset--font-size--normal);
color: #424242;
letter-spacing: 1.38px;
margin-bottom: 10px;
}
.bb-recipe-card ul:not(.wprm-recipe-instructions) {
margin-bottom: 24px;
}
.bb-recipe-card ul:not(.wprm-recipe-instructions) li {
position: relative;
list-style-type: none !important;
}
.bb-recipe-card ul:not(.wprm-recipe-instructions) li::after {
content: "";
width: 4px;
height: 4px;
border-radius: 4px;
background-color: var(--wp--preset--color--foreground);
position: absolute;
left: -24px;
top: 12px;
}
.bb-recipe-card ul.wprm-recipe-instructions {
counter-reset: cwp-counter;
}
.bb-recipe-card ul.wprm-recipe-instructions li {
counter-increment: cwp-counter;
position: relative;
list-style-type: none !important;
}
.bb-recipe-card ul.wprm-recipe-instructions li::after {
content: counter(cwp-counter);
width: 20px;
height: 20px;
border: 2px solid black;
background-color: var(--wp--preset--color--primary);
font-family: var(--wp--preset--font-family--serif);
font-size: 12px;
font-weight: 900;
position: absolute;
top: 4px;
left: -32px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 0 black;
}
.bb-recipe-card__note p {
font-size: var(--wp--preset--font-size--small);
font-style: italic;
color: #616161;
margin-top: 16px;
}
.bb-recipe-card__note p > a {
color: #616161 !important;
}
.bb-recipe-card__top {
display: flex;
width: 100%;
margin-bottom: 0;
}
.bb-recipe-card__top-left {
flex: 1;
position: relative;
margin-bottom: 32px;
}
.bb-recipe-card__top-right {
width: 268px;
}
.bb-recipe-card__top-right img {
transform: translateY(-40px);
}
@media (max-width: 600px) {
.bb-recipe-card__top {
flex-wrap: wrap;
margin-bottom: 24px;
margin-top: -40px;
}
.bb-recipe-card__top-left {
flex: none;
order: 2;
width: 100%;
}
.bb-recipe-card__top-right {
width: 100%;
display: flex;
justify-content: center;
order: 1;
}
.bb-recipe-card__top-right img {
width: 200px;
transform: translateY(0);
}
}
.bb-recipe-card__title {
display: block;
position: relative;
z-index: 1;
background-color: var(--wp--preset--color--primary);
margin: 0 -40px 20px;
padding: 10px 20px;
}
.bb-recipe-card__title h2 {
color: white;
text-shadow: 4px 4px #000, 2px -2px #000, -2px -2px #000, -2px 2px #000, 2px 2px #000;
letter-spacing: 0.1em;
text-transform: uppercase;
}
@media (max-width: 600px) {
.bb-recipe-card__title {
margin: 0 0 20px -24px;
}
}
.bb-recipe-card .wprm-recipe-rating {
margin-bottom: 18px;
}
.bb-recipe-card__meta {
display: flex;
justify-content: space-between;
margin-bottom: 32px;
}
@media (max-width: 600px) {
.bb-recipe-card__meta {
flex-direction: column;
margin-bottom: 12px;
}
}
.bb-recipe-card .wprm-recipe-servings-container {
position: relative;
padding-left: 44px;
}
.bb-recipe-card .wprm-recipe-servings-icon {
position: absolute;
left: 0;
top: 0;
}
.bb-recipe-card .wprm-recipe-servings-icon img {
width: 28px;
height: 28px;
}
.bb-recipe-card .wprm-recipe-details-label {
font-family: var(--wp--preset--font-family--serif);
font-weight: 900;
text-transform: uppercase;
font-size: 14px;
line-height: 18px;
letter-spacing: 1.17px;
margin-bottom: 5px;
}
.bb-recipe-card .wprm-recipe-servings-unit {
color: #757575;
font-style: italic;
font-size: 14px;
line-height: 18px;
}
.bb-recipe-card .wprm-recipe-times-container {
display: flex;
justify-content: flex-end;
padding-left: 32px;
position: relative;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-recipe-times-container {
justify-content: flex-start;
flex-wrap: wrap;
margin-top: 24px;
}
}
.bb-recipe-card .wprm-recipe-times-container::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 28px;
height: 28px;
background-size: cover;
background-image: url("../wp-content/themes/budgetbytes-2022/assets/icons/blocks/quick.svg");
}
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container {
display: flex;
flex-direction: column;
margin-left: 12px;
margin-right: 24px;
}
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container * {
font-size: 16px;
line-height: 24px;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container {
width: 100%;
margin-bottom: 12px;
flex-direction: row;
align-items: center;
}
.bb-recipe-card .wprm-recipe-times-container .wprm-recipe-block-container .wprm-recipe-details-label {
margin: 0 8px 0 0;
}
}
.bb-recipe-card__buttons {
display: flex;
justify-content: flex-start;
margin-bottom: 28px;
}
.bb-recipe-card__buttons > a,
.bb-recipe-card__buttons .wprm-recipe-grow-container {
width: 220px !important;
max-width: calc(50% - 9px) !important;
}
.bb-recipe-card__buttons .wprm-recipe-grow-container {
margin-right: 18px;
}
.bb-recipe-card__buttons a {
border-width: 2px !important;
white-space: nowrap;
font-weight: 900 !important;
font-family: var(--wp--preset--font-family--serif);
letter-spacing: 2px;
text-transform: uppercase;
font-size: 14px;
transition: all 0.2s ease-in-out;
}
.bb-recipe-card__buttons a:hover, .bb-recipe-card__buttons a:focus {
background-color: #eee !important;
}
.bb-recipe-card .wprm-recipe-ingredient-notes {
color: #616161;
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item {
width: calc((100% - 36px) / 4);
margin-right: 12px;
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item:nth-child(4) {
margin-right: 0;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item {
width: calc((100% - 12px) / 2);
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-item:nth-child(2n) {
margin-right: 0;
}
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-name {
display: block;
width: 100%;
text-align: left;
}
.bb-recipe-card .wprm-recipe-equipment-images .wprm-recipe-equipment-name a {
font-family: var(--wp--preset--font-family--serif);
text-transform: uppercase;
font-weight: 900;
color: var(--wp--preset--color--secondary);
text-decoration: none;
}
.bb-recipe-card .wprm-nutrition-label-text-nutrition-unit {
padding-left: 4px;
}
.bb-recipe-card .wprm-call-to-action {
width: calc(100% + 40px);
margin: 32px -20px -20px -20px !important;
flex-wrap: wrap;
text-align: center;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action {
width: calc(100% + 28px);
margin: 24px -14px -14px -14px !important;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-recipe-icon {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 12px;
}
.bb-recipe-card .wprm-call-to-action .wprm-recipe-icon img {
width: 48px;
height: 48px;
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header {
display: block;
position: relative;
font-size: 22px !important;
font-weight: 900 !important;
line-height: var(--wp--custom--line-height--small);
font-family: var(--wp--preset--font-family--serif);
text-transform: uppercase;
letter-spacing: 1.22px;
text-align: center;
margin-bottom: 12px;
padding: 0 156px;
overflow: hidden;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header {
padding: 0 62px;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::before, .bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
content: "";
background-image: url("../wp-content/themes/budgetbytes-2022/assets/images/zig-zag-left-white.svg");
width: 120px;
height: 12px;
background-position: right center;
background-size: cover;
position: absolute;
left: 15px;
top: calc(50% - 6px);
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::before, .bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
left: -63px;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
background-image: url("../wp-content/themes/budgetbytes-2022/assets/images/zig-zag-right-white.svg");
left: auto;
right: 15px;
}
@media (max-width: 600px) {
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-header::after {
right: -63px;
}
}
.bb-recipe-card .wprm-call-to-action .wprm-call-to-action-text {
font-size: var(--wp--preset--font-size--medium);
}
@media (min-width: 767px) {
.wprm-recipe-header.wprm-recipe-video-header {
display: none;
}
}</style><script type="rocketlazyloadscript">
gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 6) {if(typeof Placeholders != 'undefined'){
Placeholders.enable();
}} } );jQuery(document).bind('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );
</script>
<script type="rocketlazyloadscript">
gform.initializeOnLoaded( function() {jQuery(document).trigger('gform_post_render', [6, 1]);gform.utils.trigger({ event: 'gform/postRender', native: false, data: { formId: 6, currentPage: 1 } });} );
</script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8b253dfea2ab4077af8c6f58422dfbfd1689876627854" integrity="sha512-bjgnUKX4azu3dLTVtie9u6TKqgx29RBwfj3QXYt5EKfWM/9hPSAI/4qcV5NACjwAo8UtTeWefx6Zq5PHcMm7Tg==" data-cf-beacon='{"rayId":"8128c2e2eac23b69","version":"2023.8.0","b":1,"token":"e94a53d306d84a1da1436edf74dfcc6c","si":100}' crossorigin="anonymous"></script>
</body></html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1696689009 -->
|