zartgesotten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can not get rid of underlines on links…Look on Line 64 of your css. There it says:
border-bottom:1px solid #E8C8C8;
Remove that and you’ll be fine!
Forum: Themes and Templates
In reply to: Another theme/paragraph problemThat’s fine. You could also use
.post p { margin-bottom:10px; }
But either will work.
Forum: Fixing WordPress
In reply to: Help with list_page functionYes. Now I understand. What you want seems to be standard wordpress. You’ll just have to use the template-tag right and style your list fancy.
Forum: Plugins
In reply to: Php if statement for displaying a pictureYes.
<?php $values = get_post_custom_values("MainFeaturedPost"); if($values != "") { echo "<img src='$values[0]' style='float: left; width: 517px' alt='' />"; } ?>
Try this. You don’t need another <?php at that place. You already are IN a PHP statement.
Forum: Installing WordPress
In reply to: WordPress blog will not display because of fatal errorI don’t know that HostGator…
But don’t you have FTP Access to your page?Forum: Installing WordPress
In reply to: WordPress blog will not display because of fatal errorDid you re-upload wordpress?
Forum: Installing WordPress
In reply to: install.php => fatal errorGreat!
Forum: Plugins
In reply to: manage multiple menusAs I said…
You might want to use the multipages widget. For that you just make subpages for every menu. Like this:Menu1
– subpage1
– subpage 2Menu2
– subpage1
– subpage2And then in the Widgets, you put two multipages widgets in your sidebar and define the ID of head-Page.
If you create a new page you want to put in menu 2 you just make it as a subpage of the page “menu2”.
Forum: Plugins
In reply to: manage multiple menusI have used Multipages Widget and NAVT Plugins. I loved NAVT but it stopped functioning in my installations above Version 1.26.
NAVT had everything. You could mix Pages and Categories, define custom Links, define pages you want the menu to show on and users who were allowed to see the menu… great stuff!
Forum: Plugins
In reply to: Links navigation up/downI would probably go for something like the Floating Menu Script. Just nicer styled ??
Forum: Plugins
In reply to: Php if statement for displaying a pictureHmm… no chance to test-drive but you might try this:
$values=get_post_custom_values("MainFeaturedPost"); if (isset($values)) { <img src="<?php echo $values[0]; ?>" style="float: left; width: 517px" alt="" /> <div id="photocreds"> Credit: <?php $values = get_post_custom_values("photocreds"); echo $values[0]; ?> </div> }
Forum: Plugins
In reply to: [Plugin: Advanced Category Excluder] Pages not be excludedThere is a Plugin called “Search Everything” which has an option not to search pages. That seems to be a problem though. But there is a workaround in this forum.
Good Luck
AnjaForum: Plugins
In reply to: Making my own widgets in postsMaybe this Plugin is something for you.
Forum: Installing WordPress
In reply to: WordPress blog will not display because of fatal errorThen I would also try to delete both plugins and check if it works then. If it does, the error has to do with one of the plugins. Maybe they are not up to date for WordPress 2.8 yet.
Forum: Installing WordPress
In reply to: install.php => fatal errorBecause it seems like there is a call to a function that can not be found. Which suggests that not all of the files were uploaded correctly.