changing text navigator box ovation theme
-
Hi,
I’m using the ovation theme, and want to change the “continue reading text’ into ‘explore more’ and remove the thin lines beside text as well.
Is there a css code to do that?
Thanks!
ittragogo.comThe blog I need help with is: (visible only to logged in users)
-
Hi, add the following to your custom CSS and see what you think.
.read-more .button { visibility: hidden; font-size: 0; } .read-more .button:after { content: "Explor More"; visibility: visible; float: left; font-size: 1.2rem; background: #fff; padding: 1.18181818em 2.72727273em 1em } .read-more .button:hover:after { background: #000; } -
Yessss, thank you! it changed the text; that worked.
Still I want to get rid of the lines….
is that possible? -
See if this does what you want as far as the lines go. The only place I saw lines on your site just now was the bottom section.
.read-more::before, .read-more::after { height: 0; } -
thanks!! that worked!
the bottom section is the only one with the readmore button.
the other’explore mores’ are plain links…
cheers! -
- The topic ‘changing text navigator box ovation theme’ is closed to new replies.