This site is beginning to look super cool. I love the quote:
Our page is under construction, so are our web engineering skills.
??
How can I change the font, font size, font color, line height, align to center… and break the text in to 2 lines like this:
“We work with passion and attention to details, achieveing aesthetic beauty through digital magic.
Our latest projects:”
N.B. “achieveing” should be “achieving”
Answer 1:
In the single quotes where you currently have '3D Productions ... latest projects:'
, you can put any html you want. Just make sure you don’t add single quotes that mess up the php. In particular, you could add <p class="myextratext"> ... </p>
and style it using that class.
Answer 2 (which I much prefer):
Don’t use the code you posted above. Instead:
– Set up a home page (call it “Home”, for instance) and make it your static home page in Customiz’it
– Enter your 3D Productions ... latest projects:
text in this new page
– Use this snippet to move your featured pages below this page text. There are various “hooks” you could use; __after_article_container
is a likely candidate.
– Then you can style the text with CSS.
Answer 2 gives you the full freedom of the WordPress page to add all the text and layout you want. Users will be able to change it easily in the future, while the unchanged php works quietly in the background.
Answer 1 would mean that users would have to resort to entering text changes in php, with the risks that entails — one missed semi-colon and the site completely breaks.