Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

A

antonia_viola

@antonia_viola
About
Posts
16
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • menupoint active custom css
    A antonia_viola
    Jun 26, 2023, 12:41 AM

    @alasdair17 It didn't work unfortunately. Is there another way to do it?

    General Discussion

  • menupoint active custom css
    A antonia_viola
    Jun 26, 2023, 12:39 AM

    @Alex-F thank you!
    it was super easy. Just use the class you assigned and put it in custom css:

    h4 {
    color: #ffffff;
    -webkit-filter: blur(0px); /* Safari /
    filter: blur(0px);
       transition: ease-in-out 0.7s;
    }
    h4:hover {
    color: #ffffff;
    -webkit-filter: blur(8px); /
    Safari */
    filter: blur(5px);
       transition: ease-in-out 0.7s;
    }

    General Discussion

  • menupoint active custom css
    A antonia_viola
    Jun 21, 2023, 2:02 PM

    I would like to change the appearance of certain menu points when activated: When I click on "Workshops" I would like it to be blurred. Same with "Info". I already managed to blur them with hover but how can it stay like that?

    and is there an option to always jumpt to the beginning of the cache when click on it? Bc my site title is linked to the same page as the "info" menu point. It would be cool even though you are on the site it jumps back to top when you click on the menu point/ site title.

    website: boothsix.eu

    Thank you so much in advance!!!
    Best XX,
    Antonia

    General Discussion

  • Blur part of the page when scrolling
    A antonia_viola
    Jun 21, 2023, 1:51 PM

    @arminunruh Okay I see. Anyways thank you! <3

    General Discussion

  • Chrome shows wrong text weight on certain text blocks
    A antonia_viola
    Jun 21, 2023, 1:49 PM

    So my website works fine with safari. The text ist displayed as it should. When I switch to Chrome the text looks like in safari except for the text on the front page.
    It doesn't affect the whole front page but just three text blocks on it. Chrome displays the font weight as bold, when it's supposed to be normal.

    I tried to create a new text format only for the three blocks with a normal font-weight - nothing changes. I assigned the three text blocks to a certain class (chrome-shrift) and wrote in custom css for desktop .chrome-schrift {font-weight: normal;} still nothing changes.

    It is so odd because everything else looks perfectly fine. Just these three Blocks. What can I do?
    Oh and deleting the Browser cache doesn't help either.

    website: boothsix.eu

    Best XX
    Antonia

    General Discussion

  • Blur part of the page when scrolling
    A antonia_viola
    Jun 18, 2023, 4:28 PM

    Hey guys,
    is there a possibility to blur 1/4 of the upper part of the page when scrolling with custom CSS and html in laytheme? Similar to this example: https://kaleidoskopmusik.de

    And once you started scrolling it will stay (even when you're not scrolling) and only disappears when you scroll back to the top.

    The Website: http://boothsix.eu/info/ (wip)

    Thank you so much in advance!

    General Discussion

  • ANTONIA VIOLA Graphic Design Portfolio
    A antonia_viola
    Oct 4, 2021, 6:29 PM

    Hey guys,

    I recently finished my very first portfolio site. I am so glad that I could make my design vision become reality with LayTheme.
    Thank you for creating this Theme!

    It would mean the world for me when some of you may visit the site! Feedback and tips are highly appreciated.

    www.antoniaviola.com

    All the best xx,

    Antonia

    Showcase

  • HTML CSS: Show background picture/ video on hover (Custom HTML)
    A antonia_viola
    Dec 6, 2020, 6:28 PM

    @Richard-K Alright no problem! Respond when you have time and thank you very much :)!

    General Discussion

  • HTML CSS: Show background picture/ video on hover (Custom HTML)
    A antonia_viola
    Dec 3, 2020, 4:56 PM

    Thank you so much! yes Richard of corse!!

    This is the costume code I am using for every Project-title:

    <section class="project1" id="project-1">
    <header class="project-header">
    <h3 class="project-category">DESIGN</h3>
    <h3 class="project-title1" + class="hover-title2">
    <a href="https://antoniaviola.com/in_concert">
    <span class="fx-title1 fx-title--a fx-speed--1">Fragile 070Shake</span>
    <span class="fx-title1 fx-title--b fx-speed--1">Fragile 070Shake</span>
    </a>
    </h3>

                    </header>
                   
                    
    
    
     
    <style>
    

    a{
    color: white;
    }

    a:hover {
    color: #9000f7;
    }

    .project1 {
    z-index: 5000;
    display: flex;
    flex-wrap: wrap;
    width: 140%;
    height: 8.6vw;
    }

    /* PROJECT HEADER */

    .project-header {
    display: flex;
    width: 100%;
    color: white;
    font-family: 'ACE-110-DELUXE';
    }

    .project-category {
        z-index: 1;
        width: 0%;
        padding-top: 0vw;
        padding-bottom: 0vw;
        padding-left: 0vw;
        padding-right: 0vw;
        text-align: center;
        vertical-align: middle;
    }
    
    .project-title1 {
        z-index: 2;
        white-space: nowrap;
        display: flex;
        justify-content: left;
        align-items: left;
        width: 200%;
        position: relative;
        overflow: hidden;
        padding-right: 50vw;
        cursor: pointer;
        transition: all 200ms ease;
       
    }
    
    .project-title1:hover,
    .project.state--active .project-title {
        color: #9000f7;
    }
    
    .fx-title1 {
    z-index: 100;
    display: block;
    width: 100%;
    font-size: 8vw;
    text-align: center;
    position: absolute;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    

    }

    .fx-speed--1 { animation-duration: 30s }

    .fx-title--a { animation-name: fx-title--a }
    .fx-title--b { animation-name: fx-title--b }

    @keyframes fx-title--a {
    0% { right: -100%; }
    100% { right: 0% }
    }

    @keyframes fx-title--b {
    0% { right: 0%; }
    100% { right: 100% }
    }

    .project.state--active .fx-title1,
    .project-title1:hover .fx-title1 {
    animation-play-state: paused;
    }
    </style>

    General Discussion

  • HTML CSS: Show background picture/ video on hover (Custom HTML)
    A antonia_viola
    Nov 24, 2020, 10:41 PM

    Hello,

    I tried a lot and nothing is working.
    Can someone help me with showing a background picture/video on hover. It's costume HTML that's why the hover Plugin is not working.

    When you hover on the title it stops and should show a background picture (clouds) fullscreen. How can I do that?

    website:
    https://antoniaviola.com/front-page

    Greetings from Constance :)

    General Discussion

  • Change .navbar color on custom pages
    A antonia_viola
    Jun 14, 2020, 8:44 PM

    @mariusjopen wow thank you! I don't understand why it didn't work.
    Thank you so much!

    General Discussion backgroundcolor navbar

  • Change .navbar color on custom pages
    A antonia_viola
    Jun 12, 2020, 4:46 PM

    Hey guys
    I tried very hard to make this work but no code is working.
    Can someone help me with changing the background color of my navbar on my projects site from black to #a987f1 ?
    Thank you so much!

    http://antoniaviola.com/category/projects/

    General Discussion backgroundcolor navbar

I also code custom websites or custom Lay features.
💿 Email me here: 💿
info@laytheme.com

Before you post:
  1. When using a WordPress Cache plugin, disable it or clear your cache.
  2. Update Lay Theme and all Lay Theme Addons
  3. Disable all Plugins
  4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

This often solves issues you might run into

When you post:
  1. Post a link to where the problem is
  2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
  3. If the problem is difficult to explain, post screenshots / link to a video to explain it
Online Users
I
itsmarkjohn
6 minutes ago
Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
laytheme.com
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Search