keeping the same alignment
- The topic ‘keeping the same alignment’ is closed to new replies.
Need help? Check out our Support site, then
Hello Ellen,
I have been trying to get my homepage to look sleek, but have two issues.
I would like to have the front page featured images aligned like when it is when I click on the individual projects (so that it they are centered).
And then I would like the first introducing text on the front page to be aligned to the left and on the same line as the left side of the images.
Thanks in advance!
Sara
The blog I need help with is: (visible only to logged in users)
Hi Sara,
regarding your front page, unfortunately the Onigiri design is not centered on the Front page, since the Featured images will just float to the right site of the screen depending on their size and the screen width available (like you can see it in the Ongiri theme demo). Therefore unfortunately the images can’t be centered.
You can change the intro text though, just use the following custom CSS:
.intro-slogan {
margin: 0;
text-align: left;
}
I hope my answer is helpful.
Best, Ellen
Thanks Ellen!
That did the job :)
Is there a way to have the text on a longer horizontal line.
I don’t know how to explain it best, but basically that it is not such a small box but that the text block is wider so that more words fit on one line.
Best,
Sara
Hi Sara,
so happy that it worked :) Yes, the slogan text box has a maximum width that you can change via custom CSS as well:
.intro-slogan {
max-width: 580px !important;
}
580px is the default, so you just need to change that value.
Best, Ellen