Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
512 views
in Themes by
edited by
Greetings I would like someone to help me with this. folder and what rung code inside the folder. Thanks. this is only for cellular view.

basically so that the image looks in the list of questions in a rounded way.

Example ---->

http://agorapreguntas.net/files/seeimage.png

1 Answer

+3 votes
by
selected by
 
Best answer

Adding

.qa-avatar-image {
    border-radius: 50px;
}

to your qa-styles.css file should do the trick for most of the avatar locations.

Then just wrap that CSS into the appropriate media query for what you consider to be "cellular view". E.G.:

@media all and (min-width:481px) and (max-width: 568px) {
    .qa-avatar-image {
        border-radius: 50px;
    }
}

by
edited by
nice to be able to greet you(@ pup)i, and a thousand thanks for the contribution. always objective
...