MyBB Community Forums

Full Version: Template issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I wasn't really sure if this was the right area to post this in, and it is my first post, however I am having an issue I hope someone can shed some light on.

I am trying to get one of my ad blocks to work as it does in my wordpress theme, but I cannot figure it out. If you will see where my ad block is on my current site. http://hostingreviewsbase.com the adblock is on the right side outside of the container.

I am trying to do the same thing on my forum located here:

http://hostingreviewsbase.com/discussion

Anyone have any ideas?
I don't know if this will work as I haven't tried it out. Try making a div inside of the container, float it left, and make the size of the ad. Basically, you can work off the css from the wordpress theme.

#sidebar {
float: left;
width: 122px;
height: 610px;
color: #959487;
background-color: #e9e9d9;
border-right: 1px solid #dedeca;
padding-left: 1px;
padding-top: 9px;
}
Turns out I am still having an issue with this. I cannot position the block. I can if I use absolute values but that doesnt work as it would look different on different resolutions. Is there anything else I can try?

I am using it under the header and just as well inside the container, but I cannot get it to sit outside of the container like it is on the main page, here is the stylesheet code.

If you take a look at the site right now you can see the issue: http://hostingreviewsbase.com/discussion

Right now in the stylesheet it is set to absolute which does not work.

Thanks.