Hi,
Correct me when I’m wrong, but at the moment when you edit some CSS in Pinegrow Bootstrap 4 it ends up at your style.css for example in the order that you have put it in. The result is a messy CSS with no real structure.
What about when you sent the CSS you made not only to the specified CSS file but also to a specific location with a title (that you can choose from a drop down panel) if it’s already created or that you can create on the spot and then it gets added to that location title panel…
The result will be structured CSS with clear titles like this. There are standard structures for CSS files so you could also create CSS structure files ready made to choose from.
Regards,
David
/------------------------------------
START TYPOGRAPHY
------------------------------------/
h1 {
font-size: 1.8em;
}
/* Nice golden fonts*/
h1, h2, h3, h4, h5, h6 { font-family: ‘Playfair Display’, serif; margin-top: 0px; }
.section-title h2 { font-size: 35px; line-height: 50px; }
/about-image/
/------------------------------------
END TYPOGRAPHY
------------------------------------/
/------------------------------------
START MAPS
------------------------------------/
#map {
height: 550px;
}
/------------------------------------
END MAPS
------------------------------------/
/------------------------------------
START PANELS LINKS
------------------------------------/
.button-holder {
position: relative;
}
.button-holder a {
position: absolute;
top:;
bottom:40px;
left:35%;
right: 35%;
z-index: 99;
}
/------------------------------------
END PANELS LINKS
------------------------------------/
/------------------------------------
START FORM
------------------------------------/
.snipallmedialab {
font-family: ‘Maven Pro’, sans-serif;
position: relative;
overflow: hidden;
margin-bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0.9);
border-top: 5px solid #BF9B30;
border-bottom: 5px solid #BF9B30;
color: #9e9e9e;
text-align: center;
font-size: 16px;
}
.snipallmedialab *,
.snipallmedialab *:before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
.snipallmedialab figcaption {
padding: 12% 10% 14%;
}
/------------------------------------
END FORM
------------------------------------/