horizontale Linien wie im Classic-Template
- crazy-to-bike
- Topic Author
- Visitor
-
- Thank you received: 0
horizontale Linien wie im Classic-Template was created by crazy-to-bike
Posted 7 years 6 months ago #18657ich würde gerne horizontale Linien erstellen, wie sie beim Classic Template unter den Artikel- und Modultiteln erscheinen.
<hr> ist klar, nur finde ich trotz Entwicklerwerkzeuge zur Seitenanalyse nicht heraus, welche div-Klasse ich da angeben muss.
Können Sie mir das bitte mitteilen?
Please Log in or Create an account to join the conversation.
- joomlaplates
-
Offline
- Moderator
-
- Posts: 8841
- Thank you received: 1736
Replied by joomlaplates on topic horizontale Linien wie im Classic-Template
Posted 7 years 6 months ago #18662fügen sie folgenden CSS code in ihre css/custom.css ein.
Die "hr" bringt in dem Fall nichts, da sie die "hr" immer manuell eingeben müssten
/* Article Title
========================================================================== */
h3.uk-panel-title{
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding-bottom: 10px;
position:relative;
}
h3.uk-panel-title::after{
bottom: 0;
content: "";
height: 3px;
left: 0;
position: absolute;
width: 30px;
}
/* Module Title
========================================================================== */
h1.uk-article-title{
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
margin-top: 20px;
padding-bottom: 10px;
position:relative;
}
h1.uk-article-title::after{
bottom: 0;
content: "";
height: 3px;
left: 0;
position: absolute;
width: 30px;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
- crazy-to-bike
- Topic Author
- Visitor
-
- Thank you received: 0
Replied by crazy-to-bike on topic horizontale Linien wie im Classic-Template
Posted 7 years 6 months ago #18664ich verstehe noch nicht, wie ich diese horizontalen Linien dann an beliebiger Stelle in einen Text einfügen kann.
Please Log in or Create an account to join the conversation.
- joomlaplates
-
Offline
- Moderator
-
- Posts: 8841
- Thank you received: 1736
Replied by joomlaplates on topic horizontale Linien wie im Classic-Template
Posted 7 years 6 months ago #18665/* HR
========================================================================== */
hr{
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding-bottom: 10px;
position:relative;
}
hr::after{
bottom: 0;
content: "";
height: 3px;
left: 0;
position: absolute;
width: 30px;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
- crazy-to-bike
- Topic Author
- Visitor
-
- Thank you received: 0
Replied by crazy-to-bike on topic horizontale Linien wie im Classic-Template
Posted 7 years 6 months ago #18666ich glaube ich stehe auf dem Schlauch.
Ich habe das in die custom.css eingefügt, aber <hr> erzeugt noch immer einer normale Linie.
Please Log in or Create an account to join the conversation.
- joomlaplates
-
Offline
- Moderator
-
- Posts: 8841
- Thank you received: 1736
Replied by joomlaplates on topic horizontale Linien wie im Classic-Template
Posted 7 years 6 months ago #18667Diesen müssen sie natürlich auf ihre Farbe anpassen..
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.