@joelebeau hard to guess. site url?
Is this because you want it to be inline with the “Inspire. Act. Succeed,” headline? If so, you can do something like this:
.nav-wrap h6 {
position: absolute;
margin-top: -45px;
}
Use “positon: relative;” if you want all of the letters to stay inside of the brown background.
If you need to change the height of the nav-wrap only on the homepage, I think the best thing to do is to add the <style> tags in your homepage’s template and add higher priorities for your classes.
Thanks for your time and feedback. The nav-wrap is located in header.php. I’m just trying to adjust the height to fit more content in the nav-wrap NOT to align the text (inspire,act…). I’m not quit sure what you mean by “add the <style> tags in your homepage’s template and add higher priorities for your classes.” Are you saying put <style> tags around <div class=”nav-wrap”>?? Sorry, I’m new to coding. Also, could I use some kind of function like this: <?php if (is_front_page) ?? I wouldn’t know what to put from there. Sorry for my lack of understanding..ha
Ah, so that’s the reason. The if statement will work. Something like:
<?php if(is_front_page() ) { ?>
<style type="text/css">
div.nav-wrap {
height: 300px;
}
</style>
<?php } ?>
Ok great! It worked perfectly. Thanks Tecca, I really appreciate it.