-
AuthorPosts
-
December 14th, 2018 at 02:05 #71560dgweb2016Power User
Hi,
I updated Nirvana and thanks to your “How To” I updates the child theme aswell and nearly everythings looks like it ues to…
…except some default buttons.
They looked like this:
And now they look like this:
They are displayed on this Site.
Is there a way to use the old buttons again or to style the new buttons so that they look identical?
I tried some custom CSS in the child theme but nothing changed:
a.continue-reading-link { color: #2675A6; border: 2px solid transparent; border-color: #2675A6; } .vc_custom_heading a:focus, .vc_custom_heading a:hover{ color: white; border: 2px solid transparent; }
Any help is appreciated.
Website: diegewissen.de
- This topic was modified 5 years ago by dgweb2016.
December 16th, 2018 at 22:37 #71630dgweb2016Power UserI placed the code above in to the “Curstom CSS” field in the “Customizer” of wordpress. This seems to work as intended and it prooves that I used the correct code.
So why doesn’t it work when I place the code into the style.css of the child theme?
December 18th, 2018 at 21:44 #71702ZedCryout Creations mastermindThe order styles are applied usually matters when trying to override previous styling.
Prepending body to the identifiers will make them specific enought to work in either field.The buttons still have their borders in the theme, but the styling cleanup and optimization done for 1.5 most likely made it so that now the visual composer plugin overlaps it, specifically:
.vc_custom_heading a, .vc_custom_heading a:focus, .vc_custom_heading a:hover, .vc_custom_heading a:visited { border: none; color: inherit; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic. -
AuthorPosts
The topic ‘Button style different since Nirvana update’ is closed to new replies.