Links in demo updated - Radio in all styles adapted
-----

Manual for other Wrap-Borders

Gesperrt
Forum Member
Site Admin
Beiträge: 649
Registriert: 3. Apr 2019, 17:36
Vorname: Jutta
Dein Land: Schweiz
Wohnort: Zuchwil / SO
Kontaktdaten:

Manual for other Wrap-Borders

Beitrag von Forum Member » 20. Mär 2022, 22:48

Open the mixture.css with your editor(example notepad++) - Line 1 to 12 mark all

Code: Alles auswählen

.wrap {
	background-color: #3E3E3E;
	background-image: url("./images/background2.jpg");
	border-image: url("./images/wrap.jpg")19 round !important;
	border: 25px solid #262223;
	border-width: 22px;
	margin: 25px auto 12px;
	max-width: 1150px;
	padding: 15px;
	border-radius: 10px;
	box-shadow: -9px -9px 9px #333, 12px 12px 12px #1F1F1F;
}
For the Gradient border insert this instead

Code: Alles auswählen

.wrap {
	background-color: #3E3E3E;
	background-image: url("./images/background2.jpg");
	border-width: 22px;
	margin: 25px auto 12px;
	max-width: 1150px;
	padding: 15px;
	box-shadow: -9px -9px 9px #333, 12px 12px 12px #1F1F1F;
	border-style: solid;
	-webkit-border-image: -webkit-gradient(linear, 0 0, 100% 0, from(black), to(rgba(0, 0, 0, 0))) 1 100%;
	-webkit-border-image: -webkit-linear-gradient(left, black, rgba(0, 0, 0, 0)) 1 100%;
	-moz-border-image: -moz-linear-gradient(left, black, rgba(0, 0, 0, 0)) 1 100%;
	-o-border-image: -o-linear-gradient(left, black, rgba(0, 0, 0, 0)) 1 100%;
	border-image: linear-gradient(to left, black, rgba(0, 0, 0, 0)) 1 100%;
	border-top: none;
	border-bottom: none;
}

For the book border insert this instead

Code: Alles auswählen

.wrap {
	background-color: #3E3E3E;
	background-image: url("./images/background2.jpg");
	border: 25px solid #262223;
	border-radius: 10px;
	max-width: 1150px;
	box-shadow: -9px -9px 9px #333, 12px 12px 12px #1F1F1F;
	margin: 25px auto 12px;
	padding: 15px;
}

Gesperrt

Zurück zu „FAQ“