Text slider, removing unwanted lines, removing titles

  • Unknown's avatar

    Hi! I need a ton of help with my site.

    First – I’d like to add a slider to my “about” page. However, I want my slider to have text and not pictures.

    Second – there is an extra set of lines in between my menu and my picture on the home page. How can I get rid of this?

    Third – when I click each menu item, they each have the title very large. I’d rather those titles not even show up at all. How can I get rid of these?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    First – I’d like to add a slider to my “about” page. However, I want my slider to have text and not pictures.

    That isn’t something that we can do with CSS. Sliders are not a feature on static pages.

    You could add a Slideshow to the top of the page content and create images of the text you wish to have on that page.

    Second – there is an extra set of lines in between my menu and my picture on the home page. How can I get rid of this?

    To take the top double border off of the navigation, go to Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.

    .main-navigation {
    	border-top: none;
    }

    Third – when I click each menu item, they each have the title very large. I’d rather those titles not even show up at all. How can I get rid of these?

    Add the following to remove the page titles from all static pages.

    .page .entry-header {
    	display: none;
    }
  • The topic ‘Text slider, removing unwanted lines, removing titles’ is closed to new replies.