Move main paragraph on Home page to the right instead of the left
- The topic ‘Move main paragraph on Home page to the right instead of the left’ is closed to new replies.
Need help? Check out our Support site, then
Hi! I’d like to be able to take the “Welcome to my website!” paragraph I have on my front page and move it to the right, so that my face becomes visible. Is this possible? Sorry, I’m new to CSS, so this may be a silly question, and I’d look up the code, but I don’t know what the main page element is called.
The blog I need help with is: (visible only to logged in users)
Hi there,
Please use the following CSS codes:
@media only screen and (min-width: 800px) {
#page .content-area {
float: right;
padding-left: 15%;
padding-right: 5%;
}
}
Cheers.