front page

  • Unknown's avatar

    Hello,

    I am beginner in designing websites. I am currently working with Edin theme. I want to add some text in the featured page area i,e, above the featured pages. Could anyone please help me with that?

    Innobude

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

  • Unknown's avatar

    Hi katharinaruess82,

    If you go to My Sites > Pages > Die Innobude and add text in the editor, that should be displayed about the featured pages.

    The Edin theme documentation may also be useful for information about making other changes :)

    https://wordpress.com/theme/edin

    You can reply here or start a chat if there is anything else you need help with.

  • Unknown's avatar

    Hi,

    Thanks for the reply. But it does not work.

  • Hi there,

    That text is not displayed because it’s been hidden by some custom CSS code you’re using. Go to your Customizer > CSS and remove those lines of code:

    /*To remove the page title from all the pages and remove text on the home page-this works */
    .page-title {
    
       display: none;
    }
    .home .post-59 {
    	display: none;
    }
    
    .site-title {
       display: none;
    	height: 0px;
    }
    .hero.without-featured-image {
    	display: none;
    }
    
    #masthead {
    	border-bottom-width: 3em;
    	border-bottom-color: #4bce22;
    	border-bottom-style: solid;
    }
  • Unknown's avatar

    Hi,

    Thanks for the reply. I do not want the page title on all the other pages. If I remove those codes, then the text would be displayed in the green box(without-featured-image). But I want the text to be displayed below that i,e in featured page area.

    Thanks,
    Innobude

  • Hi there,

    I assume you want it inside the white background area? If so, this will do the trick:

    div.featured-page-wrapper::before {
    	content: "Your text here";
    }

    But you should be aware using CSS to insert text like this is very limited: It can be used to insert a single paragraph of text only. The text cannot contain line breaks or links, and there’s no way to further style text added this way.

  • The topic ‘front page’ is closed to new replies.