Question For Smart Developers !

mikaop

Power Member
Joined
Jan 5, 2021
Messages
577
Reaction score
319
I'm having a probelm in a wordpress website that is using carousel to show images , the problem is that when i add photos to the backend they get added but don't show in the front end .
i've identified where is the problem and when i add src="image-path" in the section where i show in the image in red , now the problem is where do i need to implement these changes cause when i go to the theme file editor i don't find carousel section where i can implement these canges , can i use google developer tools to identify what files have been used in a page and then reverse engineer it to find the file where the changes need to be done ?
Wp Carou.PNG
 
The solution is : try autoWidth option

img {
height: 250px;
width: auto;
}
 
Last edited:
The solution is : try autoWidth option

img {
height: 250px;
width: auto;
}
yes but in what file should i do that cause i don't know in wich one i will need to edit
 
I would just hardcode it to the PHP file itself, deactivate theme, and reactivate it. If it is added in the backend like an upload folder It should appear as long as the path is correct.
 
Back
Top