How do i left justify Dolphin. Right now dolphin is in the center of the screen. ie centered. What files would i have to go to change this?
How do i left justify Dolphin. Right now dolphin is in the center of the screen. ie centered. What files would i have to go to change this? |
Just play with styles :) for example look here:
.main {general.css (line 118)
background-color:#FFFFFF;
border:1px solid #999999;
margin:4px auto 5px;
position:relative;
width:960px;
}
change current
margin:4px auto 5px;
to
margin:4px 0px 5px;
|
You can do all these customizations in the CSS files. Mainly the general.css in templates/tmpl_xxx/css/ ---- |
Thanks guys, i will try it out!!! I am new at this, but i am learning as i go. Again thanks for the help!! |
May I ask why you want it on the left? This could cause other problems later on down the line and generaly a centered website is better on the eyes for most users, sense their eyes connect with the center of the screen better. |
That was easy! I changed the left margin from auto to 4px (it was about line 124ish in my file) in the general.css . And it worked perfectly Thank |
You are welcome... ---- |