Forum Replies Created

Viewing 15 replies - 31 through 45 (of 76 total)
  • Okay sorry, I’ll explain in the way I learned.

    But first I might have found the culprit.

    Open up your style.css in an editor. (I use Notepad++) This can be even Microsifts Wordpad.

    Now at the top of you stylesheet contains the info of your theme, keep that there.
    Looks like this

    /*
    Theme Name: Yeah She Said It
    Theme URI: http://yeahshesaidit.com/
    Description: WordPress Theme for Yeah She Said It
    Version: 2.0
    Author: zillz
    Tags: zillz, yeah she said it
    
    Custom Theme for YeahSheSaidIt.com
    */

    Now JUST after that enter the following. (copy/past this)

    /******************************
    *        CUSTOM TWEAKS        *
    ******************************/
    .hrc {
        width:370px;
    }

    So it will now look like this…

    [CSS moderated as per the Forum Rules. Please use the pastebin]

    The class hrc is what your recenter comments section is “wrapped in”. Adding this should define a width for that box making everything work correctly.

    If not. Copy/past the entire stylesheet I provided before. It will still work in FF and Chrome. However, I think it will only be a temp fix.

    That my computer not handling the javascript form your site.

    Did you try it on your site, or go by my screenshot? Everything should fit the way it was once the server renders the java correctly.

    Also your recent comments isn’t styled in IE. That may be the issue there.

    Try adding this class to your style sheet

    .hrc {
        width:370px;
    }

    Works for me locally tested, making the container and content div id’s bigger for IE.

    You can replace your code with mine here, or just bump your #container and #content up by 60px.

    Here is a screenshot of it working for me in IE.
    Screenshot

    Here is the whole stylesheet.

    [CSS moderated as per the Forum Rules. Please use the pastebin]

    Download and install “Notepad++” It will show you the line count. It’s what I code with.

    I tried something just now. It seem the “Recent Comments” Block at the bottom isn’t helping. I think it’s the “Ashley on
    Why I Am A Colored Girl Who Has No Interest In The For Colored Girls Movie
    ” reply.

    Try renaming that post to a smaller title.

    If not you #container, and your `#container {width:1000px;}
    #content {width:640px;}` will need to be bumped up to allow the long title. Or find a code hack to make the post title appear only as 6 words.

    For Example

    Recent Comment

    “Ashley on
    Why I Am A Colored Girl …”

    Line 74 of your style.css

    Seems to happen when your sidebar data goes beyond the data in your left content.

    Try adjusting the css I states beifre and see if that an improvement.

    Bump up your container id by 10px. #container {width:1010px;}

    do you have any page templates that you could apply to some sample pages to rule out your index.php, page.php and single.php?

    Try removing the (I’m assuming is a text widget) with the one with the two tall vertical images next to each other, and see if that works. If they are advertisers links then you will ahve to adjust your sidebar width to make it work. Increase your #container and #sidebar up by 10px each.

    And this values in your style `* {
    border: 0 none;
    list-style-type: none;
    margin: 0;
    outline: medium none;
    padding: 0;
    }` Is made for IE browsers.

    Try adding this perhaps… * #container {width:1010px;}

    Try increasing your content width a little just to see if it is getting pushed out by a widget in your sidebar. I really wish IE would fix these issues. Maybe IE9 will work.

    I was suggesting to maybe tweak those values before, as IE likes % (If I remember correctly)

    #container {width:1000px;} /*Try increasing this value a little 10px at a time maybe?*/

    Try encoding your pages as “UTF-8 WITHOUT BOM”. I encountered this issue with phpbb3. I use Notepade++ (Encoding>Encode UTF-8 without BOM> Save & upload)

    Hmm still looks off.

    Could you try setting percentages for your content and sidebar. If I remember corretly IE works better of off percentages.

    #content {width:64%;}
    #sidebar {width:34%;}

    Which is what your current css is set to. You may try making them add up to 100%

    Or keep the pixel method.

    #content {width:640px;}
    #sidebar {width:360px;}

    Um second though… might be a margin also pushing it out. I’ll chekc later once I get the little one to sleep.

    I can’t believe I overlooked the 4th w. Late night coding I guess. I’ll have a look now.

    As it looks, somethign might be pushing everything out of whack. Did you add a new sidebar or add anyhthing to your site? New plugin perhaps? Changed a widget?

    If you haven’t touched anyhting, try a css reset? Place this at the beginning of our stylesheet. or you can add a @ import url(reset.css) to keep your main stylesheet clean.

    /* reset styles - props eric meyer */
    html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
    :focus{outline:0;}
    body{line-height:1;color:black;background:white;}
    ol,ul{list-style:none;}
    table{border-collapse:separate;border-spacing:0;}
    caption,th,td{text-align:left;font-weight:normal;}
    blockquote:before,blockquote:after,
    q:before,q:after{content:"";}
    blockquote,q{quotes:"" "";}
    /* end reset */
    Forum: Plugins
    In reply to: Is there a plugin for…

    Really depends on how the user would like to use the page. Not everyone is going to want a home.php or a front-page.php. To each is own.

    To widgetize please see this link for a deeper look.
    CODEX Widgetizing Themes

    Basically to add a widget you’ll ahve to amke a few changes to your theme (if it’s not already done so). See if it’s available please go to your Dashboard, and select Appearance, then widgets.

    Simple drag the type of widget you want over to your sidebar.

    IF you do not see an option then you’ll needs to add that function to wordpress (which is very easy). Let us know…

    Tried to look at your site with IE, however I encountered the follow….

    500 Internal Server Error
    The request was not completed. The server met an unexpected condition.

    wwww.yeahshesaidit.com/index.php (port 80)
    Please forward this error screen to wwww.yeahshesaidit.com’s WebMaster.

    ——————————————————————————–

    sry solutions. I misread “move” as “remove”.

    RTFQ applies here. 🙂

Viewing 15 replies - 31 through 45 (of 76 total)