Main Page CSS Customization
-
I am using the Mixfolio theme and I would like to know if there’s a snippet for the following requests.
On the main page there’s a secondary menu above the featured image articles. That menu has a title to the left that says “Trabajo reciente:” Is there any way I can change that text to a text of my own?
Also, is there a snippet to make the images of the featured articles on the main and category pages have a hovering light when you click on the image? Thanks.
The blog I need help with is: (visible only to logged in users)
-
Hi there.
Let’s try this to add your new text:
.breadcrumb li.title::before { content: 'hola'; visibility: visible; }And this, a little bit of css magic to delete current title. margin-right statement is to avoid an excesive gap between your new title and those links.
.breadcrumb .title { visibility: hidden; margin-right: -8em; }I hope this helps! :)
- The topic ‘Main Page CSS Customization’ is closed to new replies.