Change Heading Text in Oxygen
-
I’m using the Oxygen theme, and I’m wondering if I can change the heading text on the home page slideshow template. I would like to change “recent articles” and “more articles” to “recent projects” and “more projects”.
Is that possible? I’m a CSS newbie, so any help is appreciated. Thanks!
kristintoepfer.com
The blog I need help with is: (visible only to logged in users)
-
-
-
There’s a sort of tricky way to do this with CSS. Start with this and note that you may need to adjust the padding and margin values to get it positioned just how you want:
.recent-articles .section-title h1 { visibility: hidden; margin-top: -1em; padding-left: 0; border-left: 0; } .recent-articles .section-title h1:before { content: "recent projects"; visibility: visible; display: block; background: #F3F3F3; border-left: 10px solid #E9E9E9; color: #999; margin-bottom: -2em; padding: .25em .6em .35em .6em; width: 100%; }To change “more articles” duplicate the example above and change “.recent-articles” to “.more-articles”.
- The topic ‘Change Heading Text in Oxygen’ is closed to new replies.