[SOLVED] h3 module top-a
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
the "h3" is the module title. If you dont want to use the "h3" module title you have to disable the tile and insert
a "h2" manually into your custom module.
2. Option
Modify the php file:
templates\jp-1stclass\layouts\widget.php
and replace the h3 with h2 shown below.
Attachment h3.jpg not found
After you have replace the h3 with h2 you have to create a new style for the "h2" too:
h2.uk-panel-title {}
www.joomlaplates.de/dokumentation.html
Attachments:
Please Log in or Create an account to join the conversation.
1. prior to
2. after
how to make the text was in the middle, as in the first case?
Attachments:
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
If you want to change the headlines you got more troubles then it´s worth.
Add this code below to your file: css/custom.css
.headline-border h2.uk-panel-title::before {
margin-left: -50%;
right: 0.5em;
}
.headline-border h2.uk-panel-title::before, .headline-border h2.uk-panel-title::after {
background-color: #000;
content: "";
display: inline-block;
height: 1px;
position: relative;
vertical-align: middle;
width: 50%;
}
.headline-border h2.uk-panel-title::after {
left: 0.5em;
margin-right: -50%;
}
.headline-border h2.uk-panel-title::before, .headline-border h2.uk-panel-title::after {
background-color: #000;
content: "";
display: inline-block;
height: 1px;
position: relative;
vertical-align: middle;
width: 50%;
}
.headline-border h2.uk-panel-title {
font-size: 200%;
overflow: hidden;
padding: 20px 0;
text-align: center;
}
We are committed to help you with any type of support query, however we can't provide extensive help in terms of customizations. In general customizations may look simple but you will require solid knowledge of web technologies and programming skills to do them or hire a professional who can do it for you.
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.