DE
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems posting larger amounts of texthi iulianis,
Try first posting it in notepad, so all word markup is removed. Then copy past it from notepad to wordpress.
Word has crapy html markup so thats probably what’s messing up your wordpress.
best regards,
DE
ps. Not many people read large amounts of text online. People rather scan for the info they need. Therefore it’s good practice to keep online text 1/2 smaller than you would for print.
Forum: Fixing WordPress
In reply to: Want 4 Post Showing on FrontPage.Hi nirav12,
Think you’ll have to tweak the index.php file and give the posts a css class.
In your css you then give this class a fixed width and let it float leftfor example your site’s width is 800px.
your posts get a width of 400 and float left.
this gives you:
Post1 room enough so Post2 comes beside post1.
The two above posts take up the 800 width of your site so post3 and post4 will show up below post 1 and 2.best regards,
DE
Forum: Fixing WordPress
In reply to: How To Change The Background Colour of specific posts only?You could make a special category for it and add the name of the category to you posts class attribute.
<?php foreach((get_the_category()) as $cat) { echo $cat->cat_name . ' '; } ?>Then it’s just a matter of making a special css rule for that class.
Forum: Fixing WordPress
In reply to: Flash NavigationJust in case you don’t already know:
From a SEO point of view it is a bad idea to use falsh for navigation. Google can’t read inside flash files and therefore will not find (all) you pages. You’re site will have more trouble showing up in google searchresults.
Styling your site with css (and javascript) might be a better idea. The same goes for using foto’s as links.If I understand you correctly, you could try something with php’s GD library and convert the text to imagebuttons.
best regards,
DE
Forum: Themes and Templates
In reply to: CSS problem with IE 61. maybe try display: block; on the bookmarks
2.
=> IE does the boxmodel in it’s on way. Therefore border, padding and margin look odd.Easy sollution is an ie specific stylesheet
<!--[if IE]><link rel="stylesheet" type="text/css" media="screen" href="ie.css" />< ![endif]-->Forum: Fixing WordPress
In reply to: Add a class to an imageguess something like
myimages[i].rel=’lightbox’; should also workor you could save yourself the trouble and install
a slimbox from http://www.inmypad.com/?p=100&cp=3Forum: Fixing WordPress
In reply to: Add a class to an imageyou could do this with some javascript.
Add some extra code to your thickbox library.
Find out the name of the div where all your content with images is, and then run through the code and add a class “thickbox”.
I use lightbox / prototype code so you might have to write it a little diffrent. I would probably come up with something like:mycontent = document.getElementById('Name if the div with your content'); myimages = mycontent.getElementsByTagName('img'); for (i<myimages.lenght){ myimages[i].addClassName('thickbox'); }didn’t have time to test the code, but if you understand what I’m saying I guess it’s engough to get you going 🙂
Forum: Themes and Templates
In reply to: Multiple sites/themes using the same WP database?Thanx Ryan.
I’ll give WordPress a try then ^_^
Forum: Themes and Templates
In reply to: How to make WordPress Display Same in IE6 and FF ?The guy uses what i explained above
`<!–[if lte IE 6]>
<style type=”text/css”>
#pngfixband {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=’true’,src=’http://www.bioneural.net/wp-content/themes/k2bn/styles/bioneural/whiteband-9rules-mt.png’); padding-top: 115px; }
#pngkiwi {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=’true’,src=’http://www.bioneural.net/wp-content/themes/k2bn/styles/bioneural/kiwi64px.png’); padding-top: 64px; }
#png9rules {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=’true’,src=’http://www.bioneural.net/wp-content/themes/k2bn/styles/bioneural/9rules.png’); padding-top: 32px; }
</style>`an alternative stylesheet for IE.
Take a look at his code. It has lots of great comments.
🙂Forum: Themes and Templates
In reply to: Multiple sites/themes using the same WP database?Seems I want to do the same thing. One database with multiple sites pulling content from it. I was thinking of giving multiple categories to my posts, depending on what site needs to display the news. Did you guys pull this off? Was it easy?
I’d like to know if I should use WordPress for this. Been looking for a long time now to find the correct tool to do this.
Many thanx,
DE
Forum: Themes and Templates
In reply to: How to make WordPress Display Same in IE6 and FF ?Think the reason for this is the broken box model
A box (div,p,…) has a different layout in FF and Safari, then it does in IE. Quickest way around is to set the with correct for firefox and then add a stylesheet for IE with:<!--[if IE]> <link href="http://xxxxyour domain here xxx/IEonly.css" rel="stylesheet" type="text/css" /> <![endif]-->The above code goes in the
<head>part of your page
the IEonly.css is your css file with only the parts that need to be overwritten for IE. Place your link to the normal css file above this one, alse the normal css overwrites the IE specific styles.hope this helps
DE
Forum: Fixing WordPress
In reply to: Internet Explorer messing up Formattingalso might wanna install webdevelopper plugin for firefox from http://chrispederick.com/work/web-developer/
Once installed, under the ‘tools’ option choose validate html. You’ll notice that your page doesn’t validate due to a link tag that isn’t closed,…DE
Forum: Fixing WordPress
In reply to: Internet Explorer messing up FormattingIt’s cleaner if you put the align in your css file
or you could also try
<div style=’margin: auto; text-align: center;’>
margin: auto centers your content,
text-align: center also makes this work in IEAlso google for embedd and object.
W3C and IE have a different idea as to how you should embedd flash and youtube stuff in a page. Believe Alistapart also wrote some articles about it.hope this helped
DE