yngwin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Hiding Header Title TextYou’re welcome! Glad you worked it out.
Forum: Themes and Templates
In reply to: Hiding Header Title TextI don’t know where you added it, but it doesn’t show up in https://www.nevis1.com/nevis1blog/wp-content/themes/Tiga/style.php
Forum: Themes and Templates
In reply to: Theme using HTML 4.0Add this to the top of the header.php of your theme:
function htmlize($buffer) {
return (preg_replace("!s*/>!", ">", $buffer));
}
ob_start("htmlize");That will strip the self-closing bits.
Forum: Themes and Templates
In reply to: adsense meshing in with single postWrap the adsense code in a div, place it before the post content, then float that div either left or right.
Forum: Themes and Templates
In reply to: Hiding Header Title TextInstead of that you should add the following to the stylesheet in your theme:
h1 a { text-indent: -9999px; }
Forum: Installing WordPress
In reply to: Can I Install WordPress In Frames?Why would you want to do that?
Forum: Fixing WordPress
In reply to: HTML Input is changed in an ‘stupid’ wayI hear you. First thing I did when I upgraded to WP 2.0 was to turn off the tinyMCE “visual rich” editor. I like to have complete control over my code.
Forum: Themes and Templates
In reply to: Questions on editing the Theme for the siteAnd you brought the layout right back into the last century with tables! OMG! Time to do some reading up on XHTML and CSS then.
Forum: Requests and Feedback
In reply to: Content type: shouldn’t it be text/xml xhtml ?As WordPress doesn’t check for validity and well-formedness of user input, you cannot rely on WP to always produce valid and well-formed XHTML. This means that the smallest mistake will make (part of) your site inaccessible — all browsers that accept real XHTML will display an error message instead of the content. Do you really want to go that way?
I know what I’m talking about, because I have used real XHTML myself for some time. It is not impossible, but it is impractical.
Forum: Fixing WordPress
In reply to: unusual loading of unknown siteIt’s your NeoCounter script that loads in a whole lot of images from that site — all the flags and maps. That certainly slows things down…
Hat tip to Firefox’ LiveHTTPHeaders extension!
Forum: Fixing WordPress
In reply to: Stripping SRC from SCRIPT tagsDoes it work when you disable the Text Control plugin or when you turn off the rich text editor?
Forum: Fixing WordPress
In reply to: table gets pushed to the bottom for no reason!Example page online?
Forum: Fixing WordPress
In reply to: Stylesheet selector in functions.phpUse something like this: https://berkano.net/files/scripts/style.phps
Forum: Fixing WordPress
In reply to: colors and font types and sizesFonts, colours and sizes and so on are regulated in the stylesheet.
Forum: Plugins
In reply to: Widgets Plugin, Pages and Links list problemThat’s because those widgets are not set up very flexibly, and follow the default WP way of sidebar blocks as list items.
Look at the way I override the default widgets in the functions.php of my OutThere theme, that should help you out.