Is there any chance that you can select the .Footermidalcontiner as a position for the Secondary links?

Comments

neerjasoftwares’s picture

Edit the page.tpl.php and replace the primary links with secondary links in Footermidalcontiner div.

Please put Secondary links code in Footermidalcontiner div so that it will look as below:-

 <div class="Footermidalcontiner">
 <?php if (isset($secondary_links)) : ?>
  <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
 <?php endif; ?>
</div>

and add the following css in the style.css

.Footermidalcontiner ul{
float:right;
margin:0;
padding:0;
position:relative;
z-index:4;
}

.Footermidalcontiner ul li.first {
border:medium none;
line-height:normal;
}

.Footermidalcontiner ul li{
border-left:1px solid #FFFFFF;
margin:0;
padding:0 5px;
}

.Footermidalcontiner ul li.first a{
padding:0;
}

.Footermidalcontiner ul li a{
background:transparent none repeat scroll 0 0 !important;
color:#FFFFFF !important;
font-family:Trebuchet MS;
font-size:14px;
line-height:20px;
margin:0 !important;
padding:0 !important;
}

.Footermidalcontiner ul li a,
.Footermidalcontiner ul li a:link,
.Footermidalcontiner ul li a:visited{
display:block;
}

Anonymous’s picture

Status: Active » Fixed

Thanks for that - all works smoothly.

I found out online that if I added text-transform:uppercase I could get the secondary menu looking like the primary menu too - all in capital letters, so I just added that to the first group above.

interface-web design’s picture

Status: Fixed » Closed (fixed)