Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1065223

    Hello, I need support: I want to move and place a media element picture (the crosses at the linked website) individually horizontally and vertically. Left center right is too limited for that. Did not find something about in the net.
    I’m still pretty new to WordPress/Enfold – could that work with CSS? If yes, how?
    Cheers, JS

    #1065420

    Is this question so difficult?

    #1066053

    Hello,
    can someone please help me out?! I thought you could get support here. But so far I’m hanging in the air with my question.
    Ok – I have to feel my way into the topic of custom CSS first: Here at the example of the two crosses: I can move them e. g. with CSS. But only both together through the class "img”;. But I would like to address each one individually, because each cross should have a different position. How do I do that?! Do you have to work with an id? Are they assigned in the window of the object? But how? What’s the syntax? And which line of code do I use to address exactly this ID?
    Maybe there’s a tutorial for that?! I haven’t found anything on the net that I can understand. . . so please support me again! Thank you, Cheers. . .

    #1066381

    Hi JS,

    We apologize for the late response.
    You can use Custom Css Class for that, in the WordPress Dashboard go to Enfold > Layout Builder > check Show element options for developers then save.
    Then each element should have a Custom Css Class field. For the first cross you can put cross1 then for the 2nd cross cross2
    In Quick CSS (located in Enfold > General Styling), add this css code:

    #top .cross1 img.avia_image {
        position: relative;
        top: -10px;
        left: 30px;
    }
    
    #top .cross2 img.avia_image {
        position: relative;
        top: 10px;
        left: -20px;
    }

    Just adjust the top and left values (you can use negative values).
    Hope this helps.

    Best regards,
    Nikko

    #1066432

    Hi Nikko,
    this is very simple in deed.
    And very very fine…Thanks a lot, JS

    #1066438

    Hi gestaltraeume,

    Glad that are able to help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Move mediaelement "picture" individually (per CSS ?)’ is closed to new replies.