Lucian Florian
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add large number of links to blogrollThe links are saved directly in database. I think would take you a lot longer to arrange a special functionality for that.
Try and search for a plugin which does that. But I am not sure if there is one.
Forum: Themes and Templates
In reply to: Posting in second column. No widgets, just posts!Yes, but that allows you just 1-2 sentences in lenght, from what I see in Plugin description.
Forum: Fixing WordPress
In reply to: Fresh Install – SlownessYes, go to bluehost.
I have been on fatcow and a page took over 7 seconds to load. Fatcow, the initial hosting provider, sweared that the website was loading just fine..
It wasn’t, as me and my client could confirm that was very slow.
I moved it on bluehost and we’ve got speed.
Forum: Themes and Templates
In reply to: Posting in second column. No widgets, just posts!Consider using custom fields to display specific posts.
I would search for functionality how to hide a post in a specific area.
I know that can take some time to research, but the answer is there.
Forum: Fixing WordPress
In reply to: Tying two blogs togetherI know a couple but they are not *cheap*.
Forum: Fixing WordPress
In reply to: How to add an image instead the classic title and subtitle?Post the code within <header></header>.
Was that the the only code from header.php? Post everything.
Forum: Fixing WordPress
In reply to: HOWTO question – highlightsThat’s an interesting technique I haven’t used yet, but after I took a look to the code, it seems he use 2 images.
One is setup for a tag and the other one to span tag from within a tag.
With css, he moves the background position:
a.project.itvizion span.hover {background-position: center bottom}With JavaScript he controls the opacity for fading effect, but I think there is a script for that.
That guy is good, by the way. Same country like me 🙂
Forum: Fixing WordPress
In reply to: How to add an image instead the classic title and subtitle?Please see that similar problem as yours:
You will need to go into your wordpress installation for that, and open header.php (wp-content/themes/*active theme* which might be the default if you haven’t changed it).
Forum: Fixing WordPress
In reply to: Tying two blogs togetherI think you should take a look into WordPress MU
Forum: Fixing WordPress
In reply to: Manual Code For Custom Field?I know that BBpress for WordPress allows a full integration of functionality, so if you have that one, it *might* be possible. If you use other forum software, I doubt, so you will have to do it manually.
Forum: Fixing WordPress
In reply to: Word Wrap on text is not working… Please helpIt doesn’t work because the way the wordpress does it, is to assign a paragraph to each element.
If you want to have your image aligned to left, after you applied that setting, make sure image is located in the same paragraph with the text that need to wrap the image.
As example:<p> <img class="alignleft size-full wp-image-83" width="100" height="100" align="left" alt="aboelata_manal_edit21" src="http://www.jointuse.org/wp-content/uploads/2009/05/aboelata_manal_edit21.jpg" title="aboelata_manal_edit21" style="margin: 0px 10px 0px 0px;"/> <strong>Example/strong> <br /> This text will wrap the image. </p>How do you know that image is in the same paragraph? Just click it and it will show the selector, under text area. Make sure you click somewhere in interior of the text, and upload the image there.
Another way to do it, if you want to keep the image in a separate paragraph, is to go in code view and apply next code to paragraph in discussion:
style="float="left"over there:
<p style="float="left"> <img src="path to image" /> </p>If you want image to the right:
style="float="right"Forum: Fixing WordPress
In reply to: Can WordPress leave my 404 alone?open your 404.php file from your active theme directory and customize it the way you want it.
Forum: Fixing WordPress
In reply to: Image upload not working in WordPress 2.8I thin I was inspired when I didn’t upgrade my websites to this version. Hope next release 2.8.1 will correct the problem.
Forum: Themes and Templates
In reply to: Posting in second column. No widgets, just posts!Short answer: No, you can’t
Long answer: of course is possible, but why do you want to get complicated again, when the main function of wordpress is to display posts over there? Anyway I am sure it might be a plugin for that, so you don’t have to hack the code.
Forum: Fixing WordPress
In reply to: list-display-image not workingI think it might use css reset.
In this case, you have to make sure that you are specific enough with selectors, but in your case you’ve been.