Hello, I have a question about coding in wix. Please play it by mistake ㅜㅜ

Asked 2 years ago, Updated 2 years ago, 107 views

Hello, I'm a designer who doesn't know much about coding ㅜ<

I want to work on the effect I want with Wix coding, but I don't know what you mean

When you mouse over "This moment"

I want to change it to an image of "For You Only"!

'This moment' is currently designated as #image1

"For You Only" is designated as #image2.

How can I complete the code...

We desperately need the help of experts passing by Please help me once.ㅜ<

coding code wix

2022-09-22 20:25

1 Answers

If it's possible to add custom HTML and custom CSS, do this.

HTML

<div id="nunc"></div>

CSS

#nunc {
  display: block;
  width: 100%;
  Height: 48px; /* If the image is displayed too small, raise it. */
  background-image: url ("http://blah, blah, blah, blah, this moment."jpg");
  background-size: contain;
  background-repeat: no-repeat;
  Cursor: pointer; /* You can remove this line. */
}
#nunc:hover {
  background-image: url ("http://blah, blah, blah, blah, blah, blah, blah, for God's sake per person."jpg");
}


2022-09-22 20:25

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.