Oxygen theme show case

  • Unknown's avatar

    How can I change the head text of the show case “recent articles” and “more article”, because I have un portuguese blog? thanks

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

  • Unknown's avatar

    Hi there, I’m reporting the missing translation to the right people, but in the meantime, you can add the following CSS and then write your own title in the content field between the quote marks.

    Recent Articles:

    .recent-articles .section-title h1:before {
        content: "put your title here";
        visibility: visible;
        background: #F3F3F3;
        border-left: 10px solid #E9E9E9;
        padding-left: 10px;
        margin-left: -20px;
    }

    More articles:

    .more-articles .section-title h1:before {
        content: "put your title here";
        visibility: visible;
        background: #F3F3F3;
        border-left: 10px solid #E9E9E9;
        padding-left: 10px;
        margin-left: -20px;
    }
  • Unknown's avatar

    Thank you for your attention, but the code do not work very well. The name “recent articles” remain after the “new name”.
    Please, what I do?
    thanks again!

  • Unknown's avatar

    Sorry about that, I seemed to have forgotten to copy and paste a couple of rules, and I’ve now also added another line to the before rules so the grey background goes full width.

    .recent-articles .section-title h1 {
        visibility: hidden;
    }
    
    .recent-articles .section-title h1:before{
    	content:"Artigos recentes";
    	visibility:visible;
    	background:#F3F3F3;
    	border-left:10px solid #E9E9E9;
    	padding-left:10px;
    	margin-left:-20px;
        display: block;
    }
    
    .more-articles .section-title h1 {
        visibility: hidden;
    }
    .more-articles .section-title h1:before{
    	content:"Mais artigos";
    	visibility:visible;
    	background:#F3F3F3;
    	border-left:10px solid #E9E9E9;
    	padding-left:10px;
    	margin-left:-20px;
        display: block;
    }
  • Unknown's avatar

    Thanks!!!! Now it work perfect.

  • Unknown's avatar
  • The topic ‘Oxygen theme show case’ is closed to new replies.