The whole code content of tpl_ezpages_bar_header.php is this:```php
include(DIR_WS_MODULES . zen_get_module_directory('ezpages_bar_header.php'));
?>
<?php if (sizeof($var_linksList) >= 1) { ?>
<div id="navEZPagesTop">
<?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) { ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a><?php echo ($i < $n ? EZPAGES_SEPARATOR_HEADER : '') . "\n"; ?>
<?php } // end FOR loop ?>
</div>
<?php } ?>
```which builds
<div id="navEZPagesTop">
<a href="etc...>Name</a>separator
<a href="etc...>Name</a>separator
<a href="etc...>Name</a>
</div>
The separator can be null (set in admin).
So you can style```
#navEZPagesTop {
margin: 0;
padding: 20px 0.5em 0.5em 25px;
background-image: url('../images/ezpagesbg.png');
background-repeat: no-repeat;
height: 75px;
width: 800px;
}
#navEZPagesTop a {
display: block;
float: left;
background-image: none;
background-repeat: no-repeat;
background-position: left;
padding: 0 10px;
line-height: 1.5em;
text-decoration: none;
font-size: 1.4em;
font-weight: bold;
color: #008aff;
}
#navEZPagesTop a+a {
background-image: url('../images/sitenavdivider.png');
}
#navEZPagesTop a:hover {
color: #ffffff;
}