mojorob
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search Template<?php echo "$s"; ?>
would probably do it.Forum: Fixing WordPress
In reply to: Put categories under post in a boxSounds like you need to learn some HTML – better do some searching around for this.
Forum: Fixing WordPress
In reply to: Different look in Firefox and IERe-read iridiax’s last post – you are being told that you have errors in your code, some of which involve div tags. When I just clicked on the link given, there were 209 errors and 19 warnings. Sorting out the divs will most likely sort out quite a few of those errors, as correcting just one div error usually corrects a number of subsequent errors.
Forum: Fixing WordPress
In reply to: Put categories under post in a boxYes – edit the theme.
Forum: Fixing WordPress
In reply to: Redirecting IE7 stuck in a loopDo you have the browser set to accept cookies for the website?
Forum: Fixing WordPress
In reply to: EXPLORER problems?The problem is that you’ve copied & pasted from MS Word. Your source code has the following which indicates this to me:
<div class="entry"> <p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:DoNotShowInsertionsAndDeletions /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther>
If you must copy & paste, it’s better to paste from a text editor such as Notepad.
Forum: Fixing WordPress
In reply to: change home page to normal page not blogI’m not really that up on how wordpress generates menus, as I tend to put in my own code – this way I don’t worry about the way wordpress sorts out the order of pages for the menu. It’s the 2nd Home in your menu which is pointing to the page Home you have, I’m not completely sure where the first Home link is coming from.
Are you sure in your header.php file that you don’t have the link to home followed by the template tag wp_list_pages ? If you did it would probably look something like:
<div id="menu"> <ul> <li class=""><a href="https://we-first.com">Home</a></li> <?php wp_list_pages('title_li='); ?> </ul> [the bit here would be for the RSS feed] </div>
Forum: Fixing WordPress
In reply to: change home page to normal page not blogI see no /home extension on the 2nd home tab (if by that you mean the url it links to).
Getting rid of one of the home tabs depends on how you have generated the menu – without that information you can’t be helped. Is the menu entirely generated by wordpress, or have you put in your own code for it, or is it part & part?
Forum: Fixing WordPress
In reply to: Problem , dates only on first post of the dayThe Codex tells you this – search is your friend!
Forum: Fixing WordPress
In reply to: change home page to normal page not blogLook in Settings on the dashboard – there you can change what is seen on the home page and select a static page rather than blog posts.
Forum: Fixing WordPress
In reply to: internet explorer background imagesSo your issue is resolved (and this thread can be marked resolved by yourself) then? Although checking the link to your site just now, things have changed and the above is no longer an issue I presume.
Forum: Fixing WordPress
In reply to: Adding Borders to DIVForum: Fixing WordPress
In reply to: How do IUnable to do a search? This is what I found by searching the codex.
Perhaps a title that indicates what the issue at hand is would be an idea too as “How do I” says nothing to anyone looking at the forum.
Forum: Fixing WordPress
In reply to: H2 Alignment issues depending on browser2 headers & 2 bodies is an important problem to resolve. As said, you can edit the header using header.php in the theme.
Forum: Fixing WordPress
In reply to: sidebar is in the bottom after…Your sidebar appears as a sidebar to me in IE7, not at the bottom.