[Support request] how to customize widgets + footer

Home Forums Support [Support request] how to customize widgets + footer

Home Forums Support how to customize widgets + footer

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #452796
    ahmad

    how can i customize the widgets to look like this

    https://ibb.co/bz6nem or https://ibb.co/bxAVzm

    also i want to make the suscribe on widgets to look like this
    https://ibb.co/cyNokR

    i have the code but its used for blogger can make it compare to wordpress ? ?

    http://cutw.in/Tova

    #452827
    Leo
    Staff
    Customer Support

    Hi there,

    Which part do you mean specifically?

    Can you link me to the page on your site where you would like to implement this?
    Currently I only see Elementor content (which then you will need to ask their support).

    Let me know 🙂

    #452952
    ahmad
    #453289
    Leo
    Staff
    Customer Support

    What exactly are you looking to customize?

    Like adding a border around search box?

    #453553
    ahmad

    add board around search and all the title on the widgets + some shadow etc

    #453723
    Leo
    Staff
    Customer Support

    You can change the border color around search with this CSS:

    input[type="search"] {
        border-color: #000;
    }

    Border around widget title”

    h2.widget-title {
        border: 2px solid #000;
    }

    Shadow around sidebar widget would be:

    .sidebar .widget {
        -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    }

    You can use this site to adjust the shadow CSS: https://www.cssmatic.com/box-shadow

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    #454743
    ahmad

    thanks alot but how to center the text ? ?

    #454875
    Leo
    Staff
    Customer Support

    This should do:

    .separate-containers .inside-right-sidebar {
        text-align: center;
    }
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.