#1
|
||||
|
||||
How do I edit html?
I'm having trouble figuring out what files I need to look in to edit certain things. Like, I've been trying to move the avatar to a different area of the page but I see it has no class or id when I inspect, so, I can't move it without all the images trying to move. I'm wanting to get in there and give it an id or class so I can move it but I have no idea where to find the html files for it, and for that matter where I go to edit any html. I looked in php files, lang, view, but I see the avatar image only be called by it's title. No html coding anywhere.
__________________
"You try you fail, you try you fail, but the only true failure is if you stop trying. So try again." - Haunted Mansion |
#2
|
||||
|
||||
if you want to move the avatar in the user profile, then you need to edit the class_userprofile.php
PHP Code:
$document->add(new Comment("<img src='{$this->avatar}'/>")); and add the size, style like any normal <img src=''> please take in mind im no coder and i'm just guessing, haven't tried to edit that part of the script. |
#3
|
||||
|
||||
Quote:
__________________
"You try you fail, you try you fail, but the only true failure is if you stop trying. So try again." - Haunted Mansion |
#4
|
||||
|
||||
move it to where? to other place or center the image on the same page??
if you want to center right or left the image in the same place, then you need to replace the code with something like this: $document->add(new Comment("<div class=''><img src='{$this->avatar}' width='100'></div>")); i played with the code and that works, i center mine with the code i have in CSS (<div class='center'>) now if you want to display the avatar in another page... then you will need to call the database and other things to get the url of the user and display it in a $document->add(new Comment("")); haven't tried to display the avatar in another page that's not the userprofile. Last edited by kristhasirah; 06-06-2020 at 06:11 PM. |
#5
|
||||
|
||||
Quote:
__________________
"You try you fail, you try you fail, but the only true failure is if you stop trying. So try again." - Haunted Mansion |
|
|
What's New? |
What's Hot? |
What's Popular? |