By marcrocs on
I'm struggling to find the place where I can edit out the formatting of content nodes. I'm using a theme I've been able to customize, Tapestry by Roopletheme.com
On almost all content I have user avatars showing, title, submitted by and then the content. Currently it's laid out line by line as:
Picture
Title of content
Submitted by..
Content
I want to have control of content layout. Something like picture float left, title of content and submitted by to the right of picture and content below, site wide. I'm embarrassed I can't figure out where to edit this
Comments
Have you looked in the
Have you looked in the themes css-files?
-----------------
Vindstille.net | Gravide studenter mer friske enn andre gravide?
Yes been looking
Yes been looking everywhere.... and I found part of what I was looking for.
I started to compare other themes layouts using firebug. I found my style.css (for tapestry by rooplethemes.com) had a few missing bits of code.
Adding:
.node .picture {
border:1px solid #DDDDDD;
float:right;
margin:0.5em;
}
.submitted {
color:#999999;
font-size:0.8em;
}
to my style css helped a bunch.
Now that I found the "where is it" hopefully I can steal code from other themes and move on.