Hello,
You already helped me with some style changes, but there is still one thing: How can I define the font style of the icon list title and content? I would like to set the title to Coda and the content to Arimo 15px each.
Quick css looks like this:
body {
font-size: 16px;
}
.avia_transform .av_font_icon {
margin-bottom: 30px;
}
.main_color .iconlist_content {
color: white !important;
}
#footer .widgettitle, .main_color .sidebar_tab, .main_color .tabcontainer .tab, .avia-icon-list .iconlist_title {
text-transform: none;
color: white;
}
.phone-info span, #top .social_bookmarks li a { color: white !important; }
Thanks a lot
Hey!
Try adding this code to the Quick CSS:
.iconlist_title, .iconlist_content{
font-size: 15px;
}
.iconlist_title {
font-family: "Coda";
}
.iconlist_content {
font-family: "Arimo";
}
Cheers!
Josue