This commit is contained in:
2025-09-25 10:14:11 +02:00
parent 32940b8a65
commit 282896d03f
4 changed files with 211 additions and 2 deletions

View File

@@ -0,0 +1,95 @@
// function addGoogleReviews() {
// let topHeader = document.getElementById('main-header')
// if (!topHeader) return console.log('topHeader not found');
// let topHeaderMain = topHeader.querySelector('.functional-header .main')
// if (!topHeaderMain) return console.log('topHeaderMain not found');
// let children = topHeaderMain.querySelectorAll(':scope > div')
// if (children.length > 1) {
// children[1].remove()
// }
// let newDiv = document.createElement('div')
// newDiv.className =
// 'col-md-3 col-sm-4 hidden-xs hidden-sm sm-center google-reviews'
// newDiv.innerHTML = `
// <a href="https://www.google.com/search?sca_esv=a55453b1a2e256c7&sxsrf=AE3TifNoSGmG80uQ-x7mtWOK5gpCW7JsEA:1749074537834&uds=AOm0WdE2fekQnsyfYEw8JPYozOKzrlAVkNCu_AoCAsiKnoHr1pg7JgUIHdDkJWfE1XKjyVTPHC-4q5ESJH2zE7vZdmMS0pOZf973xLUCTLP3IcLLfWH63gy1wQDFC6A5LWKxBohKjBYDyXSgmJGeLQ2eP3t8w5acByaD1qhbVny8b1B6hhsuCyQ&si=AMgyJEuzsz2NflaaWzrzdpjxXXRaJ2hfdMsbe_mSWso6src8s1htkSNfLSEhAxFYP5Svp_mWLUxmfe_GBYavp3unJ16h0Lo9m_I0mYEYNqC9tPHs_bfHt4k%3D&q=Biuro+Podr%C3%B3%C5%BCy+Wagabunda+Rzesz%C3%B3w+Opinie&sa=X&ved=2ahUKEwjLsI204tiNAxWNIRAIHUg5ID4Q3PALegQIQRAF&biw=2560&bih=935&dpr=1" target="_blank">
// <img src="https://vcms.eu/image/getthumb/513608">
// </a>
// `
// topHeaderMain.appendChild(newDiv)
// }
// addGoogleReviews()
function addBtnHomePage() {
let slider = document.getElementById('widget197464156');
if (!slider) return;
let sliders = slider.querySelectorAll('.carousel .carousel-inner .item');
console.log(sliders);
sliders.forEach(function (item) {
let newLink = document.createElement("a");
newLink.innerHTML = "<span>Skontaktuj się z nami</span>";
newLink.href = "/contact";
newLink.className = "extra-link btn";
item.querySelector('.text-container').appendChild(newLink);
});
}
addBtnHomePage();
//! New header
let header_html = `
<div id="custom-header">
<div class="container-fluid wrapper">
<div class="custom-header">
<div class="c-col c-col-1">
<a href="/">
<img src="/image//getbyid/514053">
</a>
</div>
<div class="c-col c-col-2">
<ul>
<li><strong>RZESZÓW</strong> <a href="tel:511638822">511-638-822</a>, <a href="tel:178537069">17 853-70-69</a></li>
<li><strong>JAROSŁAW</strong> <a href="tel:665999981">665-999-981</a>, <a href="tel:166211277">16 621-12-77</a></li>
<li><strong>SANOK</strong> <a href="tel:134643993">13 464-39-93</a></li>
</ul>
</div>
<div class="c-col c-col-3">
<ul>
<li><a href="mailto:wagabundarz@wp.pl">wagabundarz@wp.pl</a></li>
</ul>
</div>
<div class="c-col c-col-4">
<ul class="box-social-header">
<li>
<a href="https://www.facebook.com/479269998793537" target="_blank" class="btn-social text-color-1 background-color-12 mobile-menu-item" data-mobile-menu-item-type="social" data-mobile-menu-item-icon="fa-facebook" id="footer-btn-facebook">
<span class="text">Znajdź nas</span>
<span class="fa fa-fw fa-facebook"></span>
</a>
</li>
<li>
<a href="https://www.google.com/search?sca_esv=a55453b1a2e256c7&sxsrf=AE3TifNoSGmG80uQ-x7mtWOK5gpCW7JsEA:1749074537834&uds=AOm0WdE2fekQnsyfYEw8JPYozOKzrlAVkNCu_AoCAsiKnoHr1pg7JgUIHdDkJWfE1XKjyVTPHC-4q5ESJH2zE7vZdmMS0pOZf973xLUCTLP3IcLLfWH63gy1wQDFC6A5LWKxBohKjBYDyXSgmJGeLQ2eP3t8w5acByaD1qhbVny8b1B6hhsuCyQ&si=AMgyJEuzsz2NflaaWzrzdpjxXXRaJ2hfdMsbe_mSWso6src8s1htkSNfLSEhAxFYP5Svp_mWLUxmfe_GBYavp3unJ16h0Lo9m_I0mYEYNqC9tPHs_bfHt4k%3D&q=Biuro+Podr%C3%B3%C5%BCy+Wagabunda+Rzesz%C3%B3w+Opinie&sa=X&ved=2ahUKEwjLsI204tiNAxWNIRAIHUg5ID4Q3PALegQIQRAF&biw=2560&bih=935&dpr=1" target="_blank">
<img src="https://vcms.eu/image/getthumb/513608">
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
`
const mainHeader = document.querySelector("#main-header");
const firstRow = mainHeader.querySelector(".row.sortable-row");
if (firstRow) {
firstRow.outerHTML = header_html;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -84,6 +84,120 @@ header#main-header {
}
}
}
> div {
&:nth-child(2) {
&:not(#custom-header) {
visibility: hidden !important;
opacity: 0 !important;
}
}
}
#custom-header {
height: 140px;
padding: 15px 0;
.custom-header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
.c-col {
&-1 {
width: calc((100% - 100px) / 3);
img {
width: 100%;
max-width: 250px;
}
}
&-2 {
width: calc((100% - 100px) / 3);
ul {
list-style: none;
padding: 0;
margin: 0;
li {
color: #000;
font-size: 14px;
font-weight: 400;
a {
color: inherit;
}
}
}
}
&-3 {
width: calc((100% - 100px) / 3);
ul {
list-style: none;
padding: 0;
margin: 0;
li {
color: #000;
font-size: 14px;
font-weight: 400;
a {
color: inherit;
}
}
}
}
&-4 {
width: 100px;
ul.box-social-header {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
row-gap: 10px;
align-items: center;
li {
color: #000;
font-size: 14px;
font-weight: 400;
a {
color: inherit;
}
img {
width: 100%;
max-width: 80px;
}
.btn-social {
display: inline-flex;
padding: 5px 10px;
background: rgba(0, 133, 237, 1);
flex-direction: row;
align-items: center;
width: max-content;
color: #fff;
border-radius: 5px;
.text {
font-size: 12px;
}
}
}
}
}
}
}
}
}
nav.main-nav {