I am trying to put an image in my LaTeX file using this method:
\begin{figure}[!htbp]
\centering
\includegraphics[width=\textwidth]{Figure 1.png}
\caption{....}
\label{Figure 1.}
\end{figure}
My document class is \documentclass{ieeeaccess}
The issue is that the image keeps displaying over the text when I want it to be on top of the page, and its width is equal to the text width. What am I doing wrong?

\begin{figure}[!htbp]by\begin{figure*}– David Carlisle Mar 31 '23 at 19:01\includegraphics[width=\textwidth]{Figure1.png}with\includegraphics[width=\columnwidth]{Figure1.png}? – Mico Mar 31 '23 at 19:08\includegraphics{example-image}. – Teepeemm Mar 31 '23 at 19:27figure*naturally you get that fromfigureas you specify a single column figure with an image as wide as 2 columns – David Carlisle Mar 31 '23 at 23:02