balatro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bizarre problem!well darn you fixed it while I was typing….
Forum: Fixing WordPress
In reply to: Bizarre problem!Well, I am pretty sure that it is because the < small > tag isn’t closed. If I remove the small definition from your style sheet your posts start out large and get smaller and smaller. I don’t know what theme that it is you are using but the style sheet is from the default theme originally. You probably want to close that tag right after where you have you date or time statement. right before your entry div and it is probably the index php that you want to fix. Your single pages have the tag closed correctly so if you look at your single php you can see how it should look.
Forum: Fixing WordPress
In reply to: Bizarre problem!Hey that’s kind of a cool effect…
Just a quick look at your source by using just a selection of your page (view selection source) in your entry div the first thing you have is an empty < small > then on the second entry there are two, one nested inside the other then on your third entry there are three and so on by the bottom it will make you eyes cross.
Weirdly if I view the source for the whole page I do not see any nested < small > I do see the opening tag just after your H2 but never see the closing tag.
So I am guessing it has something to do with that tag.
Forum: Themes and Templates
In reply to: Navigation Causes Black Lines in FFYeah I see those lines in firefox. If you take out the background color in your .section a:hover style they don’t show up so that’s where I would start to look.
Forum: Themes and Templates
In reply to: Site’s HTML Spacing lost with WPAh. You want to display code or formatted text? Put what you want to show in between
< pre></pre>tags and any spacing will be preserved. It will also display in a fixed width font though.Forum: Themes and Templates
In reply to: Site’s HTML Spacing lost with WPIf you applied this
text-indent: 1cm
to your p class in your style sheet you would get the first line of every paragraph indented 1cm. That would be every paragraph everywhere on your site so you might want to make it more contextual something like .article-content p{styling}Forum: Themes and Templates
In reply to: Screen scrolling wide in FFI wouldn’t say I was advanced but I have fought with this myself before. I think if you look at your content and subcontent classes and you change the padding in both to 10px 10px 10px 8px; you will find the horizontal scroll goes away. You may want to be tweaking other things to get stuff lined up again. But it doesn’t seem to do much to your layout other then get rid of the scroll.
You will probably also want to look at your rap and change the margins to something like margin: 0 auto 0 auto; that should center the page nicely.
At least all that works from the webdev toolbar in firefox.
Forum: Fixing WordPress
In reply to: need help figure out why comment cannot be postedvictor,
I’m no expert but taking a quick look I noticed that none of the links in you center column worked except on the right hand half of the column. Like your title permalinks only become clickable near the end of the title. It look like the width of you menu is 350px and is overlaying the center column and because you are using position absolute and there is no background color it is transparent? If you decrease the size of your menu div to what it should be, probably around 175? I think you will find it all works.balatro