-
All replies
-
Helpful answers
-
Jul 16, 2015 10:14 AM in response to elkriverkenby Wyodor,The navigation style is determined by the template.
You cannot change it in iWeb.
You can use a JavaScript to change it. Here's a script that I once used the change the styling of the navigation :
<script> var css = "div#widget0 .navbar a,div#widget0 .noncurrent-page a:visited,div#widget0 .noncurrent-page a:hover,div#widget0 .current-page a {background-image: url('');font-size: 2em;font-family:Adler}", head = parent.document.getElementsByTagName('head')[0], style = parent.document.createElement('style'); style.type = 'text/css'; if (style.styleSheet){ style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } head.appendChild(style); </script>The styling is in var css.
Paste the JavaScript in a HTML snippet.