tomislav wrote:
-how to show prev next (page) option on bottom of article layout
i enable Bottom pagination, byt dont see anything
p.s. i dont have links layout
This is something that we might improve in the future, but the reason is that you probably are "asking" to the module to show more links that exists. Also, don't forget to set the amount of pages.
Anyway (apart of this issue) there's some style fix necessary. Please open this files on css template directory:
On style1.css file find this code:
- Code: Select all
.nsp_top_interface .next:hover { background-image:url('../images/style1/nsp-interface.png'); }
replace with:
- Code: Select all
.nsp_top_interface .next:hover { background-image:url('../images/style2/nsp-interface.png')!important;background-color:transparent!important }
On style2.css file:
- Code: Select all
.nsp_top_interface .next:hover { background-image:url('../images/style2/nsp-interface.png'); }
replace with
- Code: Select all
.nsp_top_interface .next:hover { background-image:url('../images/style2/nsp-interface.png')!important;background-color:transparent!important }
On style3.css file:
- Code: Select all
.nsp_top_interface .next:hover { background-image:url('../images/style3/nsp-interface.png'); }
replace with
- Code: Select all
.nsp_top_interface .next:hover { background-image:url('../images/style3/nsp-interface.png')!important;background-color:transparent!important }
Finally, to add counter style support open gk_stuff.css file and find this lines:
- Code: Select all
.nsp_bottom_interface .counter,
.nsp_top_interface .counter {
background:#ddd;
color:#444;
padding:1px 3px;
cursor:pointer;
border-radius:2px 2px;
-moz-border-radius:2px 2px;
-webkit-border-radius:2px 2px;
font-size:9px;
float:left;
margin:0 0 0 3px;
}
.nsp_bottom_interface .counter span,
.nsp_top_interface .counter span { }
replace with:
- Code: Select all
.nsp_bottom_interface .counter,
.nsp_top_interface .counter {
background-image:none;
background:#000;
color:#444;
padding:1px 3px 1px 6px;
cursor:pointer;
border-radius:20px 20px;
-moz-border-radius:20px 20px;
-webkit-border-radius:20px 20px!important;
font-size:9px;
float:none;
margin-left: 10px!important;
width:auto;
height:16px;
line-height:17px;
}
.nsp_bottom_interface .counter span,
.nsp_top_interface .counter span { background:#000; }
- where to search for header title of article, to increase the font
Please add this code (e.g.) on joomla.css file:
- Code: Select all
h2.contentheading span {font-size: 40px}
-is it posible to add on bottom,.. more in and show all categories on that section
like on old news show
Sorry, that not possible at the moment.
About the code above, this will be added on next update of the template.
Cheers