Site logo

Archived topic

How to add left and right border images to content area

6 replies · Started by Blake on May 24, 2017

Viewing posts 1–7 of 7

I am looking to add two different images that will act as borders for the left and right side of the content area. To begin this process I have added in div's using the generate_before_content hook. What CSS would I use to enable the images to act as borders for the left and right edges of the content area?

why don't you use something like:

.site-content {
    border-right: 1px solid black;
    border-left: 1px solid black;
}

I was able to find the correct styling to place the images in the correct locations. What is slowing me down in general is knowing the correct CSS selectors. Some frameworks use bootstrap, I believe yours uses another CSS framework. Tom/Leo, can you recommend some tutorials/reference material that covers the styling of your CSS framework? That would help speed up my development and reduce the amount of CSS questions.

The CSS framework is this: https://unsemantic.com/ but it is essentially used for the responsive grid.

Thanks Roberto :)

Other than that using developer tool in your browser should help to find everything else.

Definitely let us know if you have trouble finding the correct element though that's what we are here for. I'd say 50% questions on the forum are CSS related :)

Thank you for all your responses and continued support.

Glad we could help :)

This archived topic is closed to new replies.