Hi,
I need 5 navbar items, but I have only three. How to add more? And how to change icon of item?
Hi,
I need 5 navbar items, but I have only three. How to add more? And how to change icon of item?
Hi Andrey,
On next tutorial, you can find information about how to set a custom icon
http://docs.tiggzi.com/tutorials/custom-icons-in-the-nav-menu
or you can use default icons on "PROPERTIES - Navbar item" -"Icon"
About navbar, we'll answer ASAP.
To add more items:
Thanks for help!
Now I want to change Icon size to about 48 px
in HTML I have
li
a href="#find_us_page" data-theme='d' data-icon='blue' id="navbar_icon_find_us" dsid="mobilenavbaritem4_5" name="mobilenavbaritem4_5"
Find us
/a
/li
CSS:
/* custom icons */
.ui-icon-blue
{
background: url(/images/my_icon.png) 100% 100% no-repeat;
background-size: 48px 48px;
background-position: 0 0;
border-radius: 0px;
}
[dsid=mobilenavbaritem4_5] .ui-icon {
background: url("images/my_icon.png");
background-size: 48px 48px;
background-position: 0 0;
border-radius: 0px;
}
and this seems to be not working. My icon has been cut to small-size
Try
background: url(../images/my_icon.png)