webdressing
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do you know if your theme is Widget ready?THANK YOU Cynthea and Vkaryl. Appreciate the help 🙂
Whoo-hoo! I finally get to select [resolved] for one of my threads :p
Forum: Themes and Templates
In reply to: troubleshooting CSS – IE is driving me nutsOnly because they know their own creation the best 🙂 If you still have problems then you can always stop back here 🙂
Forum: Themes and Templates
In reply to: Header image not showing in IE, fine in FFI can give you a list a mile long of people who have had the same problems that you’re having with that theme. To my knowledge NONE of them have ever fixed the problem. I strongly recommend that you go here and find a none-kubric style theme and use that instead.
Forum: Themes and Templates
In reply to: Keeping the wrapper from the header section?” I think if you put footer within page then it will center the footer correctly. “
Well yes we already tried that, but that then causes several other problems. The page then overlaps the top of the footer. Also the footer sometimes hides behind the page (the container) so essentially it doesn’t display at all when it’s added to the page section.
Forum: Themes and Templates
In reply to: troubleshooting CSS – IE is driving me nutsYes, and change background to:
background: url(images/head.jpg) no-repeat;
Also, have you tried contacting the author (via their comments section)? Seems a few others were having problems with IE.
Forum: Plugins
In reply to: A voting system other than wp-polls?“can it be implemented into the sidebar?”
I thought I read where it could…
Forum: Themes and Templates
In reply to: Header image not showing in IE, fine in FFWhat theme are you using?
Forum: Themes and Templates
In reply to: Keeping the wrapper from the header section?Thanks Jabecker, the header is fine now. I just have to figure out what they’re calling the tag line and it should be all finished. Shouldn’t be too hard. Thanks 🙂
“Crazy as it may seem, try putting “text-align:center” on the body. Just try it. “
Tried it. Guess what? It centered the text, not the footer :p
But all is not lost. I read where the next version of CSS is doing away with image tags and they’re going to treat them as elements. I wonder if I do that to the body if it will work. I will keep playing around with it. Thanks again for your help Jabecker 🙂
Forum: Themes and Templates
In reply to: Replacing the default header (oh yes, I’ve searched)“I’d start with the layout that was right in my opinion, and get the look nailed first. Then I’d add the functionality for the other stuff.”
Yep. That’s definitely the easiest way to do it. Personally I’d start with the tabbed nav theme because that would be the messiest to add. Don’t worry about the subscription part. There are plenty of great subscription plugins that are probably better to use anyway that have more features, and would be much easier for you to add and remove later if needed 🙂
Forum: Themes and Templates
In reply to: troubleshooting CSS – IE is driving me nuts“I will just have to tell them their browser is obsolete. Yay!”
Yeah just tell them to use Safari or the older version of FireFox (1.5) as 2.0 is still a little buggy. I prefer Safari as everything always works flawlessly with it.I didn’t see a width setting for the header. I think IE needs both width and height. Also do you have a link to the theme you’re using?
Forum: Themes and Templates
In reply to: Keeping the wrapper from the header section?We’ve already posted it like 3 or 4 times already doodlebee. Sorry we thought you would just get it from one of the other threads that it’s been in. Here it is here. Thanks 🙂
Forum: Themes and Templates
In reply to: help with stylesheet in single.phpI would post a link to the page and also your CSS for those sections so we can check it out.
Forum: Themes and Templates
In reply to: troubleshooting CSS – IE is driving me nutsThere is no Mac IE. There hasn’t been for several years. However when it was around a common mistake that coders used to make was that they used single quotes ( ‘ ) instead of double quotes ( ” ). You could check your code for that as the Mac IE didn’t recognize single quotes. However I wouldn’t worry to much about how it looks in Mac IE, there’s probably just a handful of people using it these days.
Please post your CSS for those other sections so we can look them over.
“Internet Explorer is making me loopy.”
That’s because Internet Explorer IS loopy :p IE7 also messes up javascript, so there’s much more of this fun coming your way courtesy of Microsoft 😉Forum: Themes and Templates
In reply to: help with stylesheet in single.phpuse:
text-align: left;
Forum: Themes and Templates
In reply to: Keeping the wrapper from the header section?“put text-align:center on the body.”
We’re not trying to align the text, we’re trying to align the image for the footer. This is what we tried so far:Aligning the footer.php div:
</div>
<div id=”footer” align=”center”>
bla bla bla
</div>
</body>
</html>Postitioning the image:
#footer {
margin: 0px;
padding: 20px 0px 0px 0px;
width: 900px;
height: 106px;
background: url(images/footer.gif) no-repeat;
background-position: center top;
text-align: center;
font-style: italic;
text-decoration: none;
}…none of these worked.
“you need to put the color on #header h1 a in order to make your header text black.”
Yep that’s where it is. The weirdest part about it is that in Safari it shows up red, and in FF it shows up purple.
#header h1 {
margin: 0;
padding: 45px 0 0 0px;
color: #000000;
font-size: 2em;
text-align: center;
line-height: 40px;
}