Faux columns — A List Apart does not speak to my site code. Please help!
-
I made a 1px high gif of my sidebar color, and I’ve tried all kinds of places to put the code —
background: url(filename.gif) repeat-y
— to get it to extend and match the two-column mainbar, but it’s not working because there is no container that holds both my mainbar and sidebar, as far as I can tell.Here are some things I did, and excerpts of my code:
The CSS is here:
https://ibeamforlife.com/blog/wp-content/themes/new-balance-of-blue/style.cssI tried putting
background: url(filename.gif) repeat-y
in place ofbackground: #FFFFcc; height: 1850px;
in the CSS here:div.one-column { width: 210px; background: #FFFFcc; height: 1850px; padding: 5px 5px 20px 12px; }
(yes, yes, I know, `height: 1850px1 is a VERY clunky, wrong workaround I’ve been doing, up until now)
But that didn’t work.
I tried putting in `background: url(images/filename.gif) repeat-y after content here:
#sidebar, #content { overflow: hidden; }
But that didn’t work. I tried it because my sidebar.php starts out
<div id="sidebar" class="float-right one-column">
So, you can see I’m missing something in my understanding of the php code. But I don’t see anywhere that the .php files have a wrapper that contains both the two-column mainbar and the single-column sidebar so that I could create a gif that would cover the entire 3-column format like https://www.alistapart.com/articles/fauxcolumns/ describes in his article.
And so the problem is, every other www.remarpro.com forum posting, where someone asks a question about Faux columns, the other members say “google faux columns,” and I have, and I even watched several YouTube videos, but they don’t address this very specific problem of no overall container to use a repeat gif across all three columns, and I can’t figure out with my code how to apply only the one-column repeat-y.
Can someone please take the time to look specifically at my question and help me work it out?
Thank you!
- The topic ‘Faux columns — A List Apart does not speak to my site code. Please help!’ is closed to new replies.