Site logo

Archived topic

how to customize widgets + footer

7 replies · Started by ahmad on December 19, 2017

Viewing posts 1–8 of 8

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 :)

What exactly are you looking to customize?

Like adding a border around search box?

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

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/

thanks alot but how to center the text ? ?

This should do:

.separate-containers .inside-right-sidebar {
    text-align: center;
}
This archived topic is closed to new replies.