Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

iWeb Fonts

Can I change the fonts style and/or size within the iWeb navigation menu? If so, how do I go about this?

iMac, OS X Yosemite (10.10), iLife '11, iTunes 12, i Work 09

Posted on Jul 16, 2015 9:33 AM

Reply
1 reply

Jul 16, 2015 10:14 AM in response to elkriverken

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.

iWeb Fonts

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.