Jump to content

Haiko

Member
  • Posts

    6
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Haiko reacted to Beyondspace in How to Increase a word size   
    Is this what you mean

    You can add to Home > Design > Custom Css
    .Header-nav-inner [href="/sous-catgorie"] { font-size: 1.5em; } Support me by pressing đź‘Ť if this useful for you
  2. Like
    Haiko reacted to iamdavehart in I wanna flash my word how can I do?   
    you can add something like this to your custom css. (go to your main design menu).
    nav a[href="/sous-catgorie"] { animation: blinkingText 0.5s infinite alternate-reverse; } @keyframes blinkingText { 0% { color: black; } 100% { color: red; } } the first rule targets the just the navigation link that points to /sous-catgorie, and tells it to use the animation we specify in the next rule. it runs it forwards then backwards, taking half a second to go from 0% to 100%. the second rule tells it what color the text should be at each stage. in this case start black and end red. you could add other similar lines at 50% if you want it to go through three colours. if you wanted it to blink in and out, you could animate the opacity instead of the colours by changing the second rule to this
    @keyframes blinkingText { 0% { opacity: 0; } 100% { opacity: 1; } }  
Ă—
Ă—
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.