Feature Requests > change appearance of item on Menu bar (i.e. "NEW")

August 23, 2006 at 17:19 GMT

Hi! Is there a way to make a page title show up on the menu bar differently than the rest (bold, yellow, big, etc.)?

Thanks,

Megan

August 25, 2006 at 03:47 GMT

Hi Megan - you can make changes to you sites style by editing or creating a new style sheet in the manage site/themes section.

Click edit on your current style sheet (save it under a dfferent name if you want to keep the original unchanged.

Looking at the css code, find a section called:
/*----------NAVBAR------------*/
MENU buttons level one are for main pages and level two is subpages

In this section is all of the editable elements of the menubar
including font family, size, color and style.

To change the color of your link change:
color:#424542;
Colors use hexadecimal screen colors
more info: http://www.utexas.edu/learn/html/colors.html

Add the following line to bold the font.
font-weight:bold;

#menu li.selected_one a {
padding: 3px 0px 3px 8px;
background: #EAE7E7;
font-weight:bold;
color: #A21D1D;
border-bottom: 1px dotted #B2B2B2;
}

NOTE:
#menu li.unselected_one a:hover
This controls how the text reacts when a cursor rolls over it.

try adding:
font-size: 16px;
font-style:italic;

Any changes you make will be seen when you save the style.
If you want to be safe, save the original style under a different name so you can always go back to it.

For some links on HTML and CSS visit the 'Resources' page of Support

http://support.mosaicglobe.com/links/66

Megan wrote:

> Hi! Is there a way to make a page title show up on the menu bar differently
> than the rest (bold, yellow, big, etc.)?
>
> Thanks,
>
> Megan

August 26, 2006 at 05:49 GMT

Thank you!