• Resolved schure

    (@schure)


    It appears that I might slightly be retarded… http://miwaterfowler.com is my site, here is my couple of issues.

    1). All of the posts seem far right I want them to be closer to the left sidebar…or in other words equally apart.

    2). I use 3 Column Relaxation theme modified, I don’t see where in my CSS I can increase the size of my Tite for my posts.

    3). I want to change the color of my sidebar…not text the sidebar it’s self…where in my CSS would I put the code and what is the code.

    Thanks, hope this clears it up.

Viewing 14 replies - 1 through 14 (of 14 total)
  • 1. In #content, play with the 4th number in the padding line.

    2. In p { add a font-size.

    3. Both of your sidebars (#sidebar and #sidebar2) show background: transparent. Change that to a color.

    I downloaded Relaxation 3 Column and you’ve modified it so much I’m not sure what will apply. (The original has both sidebars on the right, which I suspect is why it looks freaky after you moved one of them to the left and the content to the center). That said…

    1) #content {text-align: left;}
    or
    #content {text-align: center;}

    (The original theme had this set to left, so you must have modified it to right.)

    http://www.w3schools.com/css/tryit.asp?filename=trycss_text-align

    2) Your post titles are “h1” headers inside a post div inside content div.

    #content div.post h1
    {
    font-size: large;
    font-weight: bold;
    }

    http://www.w3schools.com/css/css_font.asp

    3) #sidebar change background from
    background: transparent;
    to
    background-color: Black;
    or
    background-color: #000000;
    (both are Black. Change it to whatever you want.)

    http://www.w3schools.com/css/css_background.asp

    Idle curiosity question: why didn’t you grab one of the left-sidebar/right-sidebar themes to begin with? Like kickass-squawk, for instance. And there are others….

    Thread Starter schure

    (@schure)

    2 Reason, I wanted rounded corners…and second I wanted a better understanding of how this works so I can do the same that you guys are doing…helping out.

    Thanks so much guys!

    It would have been less PITA if you had a stable 3 colum (=sidebar + content + sidebar) layout and wanted just to make your favourite round corners 🙂

    Thread Starter schure

    (@schure)

    Moshu I don’t know you and I’m glad I don’t…thanks for the heads up, but how would I learn without trying things. Good Day Sir.

    Thread Starter schure

    (@schure)

    I tried both for increasing the title font but neither worked. adding the font increased the paragraph of writing and other did nothing.

    Sorry mine was wrong. I didn’t realize you meant the Title.

    h1, h1 a {
    font-size: 12px;

    make that bigger.

    And there’s no reason to get snippy with moshu. He’s just making a friendly joke. See the smilie?

    Thread Starter schure

    (@schure)

    Thanks for the code. Yeah I see the smile…however I asked for help before and got nothing of great help from him.

    Thanks again guys

    Thread Starter schure

    (@schure)

    oriecat,
    For some reason that doesn’t do anything either…Im perplexed. Any idea why?

    Maybe you need to do a hard refresh, because it worked when I changed it with the Firefox Web Developer. And it’s way bigger now when I check your page.

    Thread Starter schure

    (@schure)

    I’m using IE…I deleted my temp files, cleared history and cookies…no change bro.

    Thread Starter schure

    (@schure)

    I still haven’t figured it out yet. I mean, I’m using IE it looks great in IE..I just can’t get the font larger. Any ideas would be greatly appricated.

Viewing 14 replies - 1 through 14 (of 14 total)

The topic ‘New CSS Question’ is closed to new replies.