Moving featured image title and navigation in Twenty Fourteen

  • Unknown's avatar

    I’m trying to move the title and navigation on the slider of my Twenty Fourteen theme so it’s in the top right instead. Is this possible?

  • Unknown's avatar

    You can move the title block up and to the right easily enough, but to move the slider navigation is problematic. It does not have the same parent div as the title, which means the two of them have no relationship. If the title goes from one line to two or three, the navigation will not move down to accommodate the longer title. You can add the following CSS and then click through your three featured posts and see what I mean.

    .slider .featured-content .entry-header {
        top: 0;
        right: 0;
        left: auto;
        bottom: auto;
    }
    .slider-control-paging {
        position: absolute;
        top: 155px;
        right: 0;
    }
  • The topic ‘Moving featured image title and navigation in Twenty Fourteen’ is closed to new replies.