-
Roger Coathup posted on the forum topic Howto : put a picture between header and content in the group Creating & Extending: 14 years, 1 month ago
@askunky There are any number of ways you can do this using CSS positioning (and developing your own bespoke website theme). This isn’t really a BuddyPress question though, it’s a general website development / CSS question. I suggest a good book on CSS would be a starting point. Incidentally: There’s no need for div wrappers just […]
-
pcwriter posted on the forum topic Howto : put a picture between header and content in the group Creating & Extending: 14 years, 1 month ago
@askunky The image should be contained within a div whose precise placement in the header can be controlled with position:relative; Here’s an example styleset to get you started:
.my-header-image { position:relative; left:-50px; top:150px; z-index:1; }
In the above example, the top-left corner of the div will sit 50px to the left of the left edge of […]
@askunky
Not recently active