Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Minor Changes to Home Page (Body and Footer) WordPress

  • SOLVED

<strong>I'm trying to design my home page:[[LINK href="http://timonjahnert.com/"]] timonjahnert.com[[/LINK]] to look like the attached jpg file.</strong>


How do make these changes in the Genesis Dynamik Theme:

1. The white space (body content) is bothering me, can I make it disappear for just the home page? Like display:none

2. How do I change the font/color/size of the footer text?






Answers (1)

2014-11-19

Kyle answers:

Whitespace css:

body.home #home-hook-wrap{
padding: 0 !important
}


Kyle comments:

Footer text elements to target:

.site-footer p {
color: #FFFFFF;
font-family: 'PT Sans','sans-serif';
font-size: 16px;
font-size: 1.6rem;
text-align: center;
}
.site-footer a, .site-footer a:visited {
color: #DDDDDD;
text-decoration: none;
}


Kyle comments:

The footer text is somewhere already in the dynamik css, ideally you want to search for those two and edit them. If need be you can use the !important determinant to override it though.


Tim comments:

Where do I put this code? It's my first time using Dynamik


Kyle comments:

Under the dynamic theme settings and there are css editors for different areas. There is also a place for placing custom css, that may be easiest.


Tim comments:

I found a spot in the home page. Is this a place to put the code? I went to the dynamic theme settings but couldn't find anything related to just the home page.