• Hi there,

    I was wondering if it were possible to have a banner over the Featured Posts slider. It would be like the comment count but on the opposite side and be ‘Latest Featured Posts’ or something like that? Basically adding a title to the slider.

    Thanks in advance for your help!

    Hazel

Viewing 1 replies (of 1 total)
  • Hi Hazel. You could give the css a try in a child theme style.css file or in a plugin like Simple Custom CSS. You may need to adjust the “top” position depending on how your site is configured.

    #flexslider-featured:after {
    	content: "Latest Featured Posts";
    	position: fixed;
    	top:340px;
    	background: #82b965;
    	color: #fff;
    	padding: 1px 5px;
    }
    @media only screen and (min-width: 420px) and (max-width: 719px) {
      #flexslider-featured:after {
    	content: "Latest Featured Posts";
    	position: fixed;
    	top:308px;
    	background: #82b965;
    	color: #fff;
    	padding: 1px 5px;
      }
    }
    @media only screen and (max-width: 419px) {
      #flexslider-featured:after {
    	content: "Latest Featured Posts";
    	position: fixed;
    	top:308px;
    	background: #82b965;
    	color: #fff;
    	padding: 1px 5px;
      }
    }
Viewing 1 replies (of 1 total)

The topic ‘Small Title on Slider’ is closed to new replies.