Pedro Sanchez
asked 10 years ago

I currently have the bio for a user in the about section of the website spanning the whole width of the site. I’d like to confine it to the user of my picture & links rather than a big area. 

1 Answers
DominicStaff
answered 10 years ago

To resolve this issue in the DW Page theme, you can do as the following:
1. Install the Jetpack by WordPress.com plugin.
2. Setting Jetpack then enable the Custom CSS feature.
3. Move through Appearance > Editor Css, add the following code:

  .about .thumbnail .caption p {
        padding: 0 300px;
}
 @media(max-width:599px){
     .about .thumbnail .caption p {
        padding: 0 9px !important;
}
}
@media(max-width:979px){
     .about .thumbnail .caption p {
        padding: 0 200px;
}
}

Hope this helps !

Powered by DW Question & Answer Pro