problem with changing body design of website

filipograf / 2012-12-09 22:06:32   

Hello everyone
I am new here. My question is how I could get to css or html scripts at options. I would like to change couple of things but don´t really know how. The only way I guess is through the css. For example spacing the text in blocks, deleting default option of viewing the exhibit information as well as the name of my website in the left upper corner, font and it´s sitze. I mean the visual of content of the page.
Please help me with that.

Thanks a lot.
Filip.

arsondpi / 2012-12-10 00:20:56   

Hello.

If you mean the paragraphs then it's the p tag you should be editing.
Go to Admin->Assets->Theme->style.css and find and change:

  1. p { margin-bottom: 20px; }

to change the space between paragraphs

  1. p { line-height: 1,7em; }

to change the line-height.

To change the name of the website in the pre-nav area you could wrap the name in h1 tags and change it with css. For example:

  1. <h1>This is the name</h1>

and then find/add in your style.css

  1. h1 { font-family: serif; font-size: 24px; }

This thread has been closed, thank you.