Homepage formatting issues

Homepage Community Forums Epik Theme Support Homepage formatting issues

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #12390
    Ryan
    Customer

      I am having some issues with the homepage formatting. It looks great on the interior content pages (http://www.fastestwebhosts.com/shared-hosting/), but the homepage (http://www.fastestwebhosts.com/) doesn’t have the white background and the page title is not in the proper place.

      I tried changing the templates and genesis layout options, but nothing worked to add the white background. Can anyone help?

      #12415
      Eric
      Customer

        First take a look at line 2303 in your css and remove the background: none; part –

        .home .entry {
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        background: none;
        }

        That will add the white background back again.

        Then I would recommend adding the same padding that is used on other pages by adding this exact code to the same code/area above –

        padding: 40px 20px 20px;

        So it should look like this when you’re done –

        .home .entry {
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            padding: 40px 20px 20px;
        }

        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.