Hello.
XServer and resolution.... that has always been my favorite configuration issue.
Have you tried running system-config-display? There the Hardware tab under which you can choose the monitor you're using. Maybe your monitor isn't recognized correctly?
If that doesn't work for you then what you need to do is to edit /etc/X11/xorg.conf. That, however, is something that's difficult to explain since there is a number of ways to edit it to achieve the same outcome. What I would like to suggest first is to remove any and all Modes sections form xorg.conf. Then add a proper modeline under Monitor section and a corresponding Display subsection under Screen section. You also need to add your monitors parameters under Monitor section. Read man xorg.conf to get the picture. I'll add my xorg.conf here for reference. Note the HorizSync and VertRefresh line under Monitor section. Those you need to find out for your monitor. Probably also DisplaySize.
This is here just to get you started. I'm not responsible for any damages editing xorg.conf might cause to your hardware. Yes, you
can fry your monitor by making improper changes to xorg.conf, so please read man xorg.conf carefully.
EDIT: Remember to make a backup of your xorg.conf before editing it!
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Module"
Load "dri"
Load "extmod"
Load "glx"
EndSection
Section "Extensions"
Option "Composite"
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "fi"
EndSection
Section "Monitor"
Identifier "Monitor0"
ModelName "HP M900 19-inch Display"
DisplaySize 360 270
HorizSync 31.0 - 95.0
VertRefresh 50.0 - 76.0
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024"
EndSubSection
EndSection