Hi Katie,
In your main.css, the nav.SecondaryNav li's all have a width of 240px; so if you want them to have different widths, you'll need to target them individually.
You could do this inline (I'm just guessing at the widths - the 3rd one looks the biggest to me with the others looking roughly the same);
Code:
<nav class="SecondaryNav">
<ul>
<li style="width:22%" ><a>Live Action<img src="images/camera_icon.png"></a><br>...</li>
<li style="width:22%" ><a>Main Title Design<img src="images/camera_icon.png"></a><br>...</li>
<li style="width:34%" ><a>Broadcast Design/Graphics<img src="images/camera_icon.png"></a><br>...</li>
<li style="width:22%" ><a>2012 RRC Showreel<img src="images/camera_icon.png"></a><br>...</li>
</ul>
</nav>
Or you can give each li a different class and target them in your main.css like this;
Code:
<nav class="SecondaryNav">
<ul>
<li class="first" ><a>Live Action<img src="images/camera_icon.png"></a><br>...</li>
<li class="second" ><a>Main Title Design<img src="images/camera_icon.png"></a><br>...</li>
<li class="third" ><a>Broadcast Design/Graphics<img src="images/camera_icon.png"></a><br>...</li>
<li class="fourth" ><a>2012 RRC Showreel<img src="images/camera_icon.png"></a><br>...</li>
</ul>
</nav>
Code:
nav.SecondaryNav li.first, nav.SecondaryNav li.second, nav.SecondaryNav li.fourth { width:22%; }
nav.SecondaryNav li.third { width:34%; }
You should be able to target the a tag titles to make them bigger like this (change the font-size to whatever you wish);
Code:
nav.SecondaryNav li a { font-size:26pt; }
Hope that helps
BTW - the 2nd attachment didnt work and is throwing up errors.
Bookmarks