thaking
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Font & Sidebar issue…Forum: Fixing WordPress
In reply to: sidebar links / pagesno..
i created a page (Write > Page) and they got a url like ?pageid=12 and those are displayed on my site using
<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' );?>now, the photo gallery i have creates its own directory, /photos/. i’d like to include that in the list that is generated with the wp_list_pages code above…
if you go to my site, jeremyking.com, you’ll see the About Me, Contact Me, FAQ, and Photos. the photos page was created like i said above (Write > Page) and what i’d really like is my /photos/ page to be that url instead…
Forum: Fixing WordPress
In reply to: how to add a title without it appearing in the headerlog into to your site and in the options put in the title you want….then go edit your header.php file…find the code i’ve posted above and comment it out, or remove it altogether…
Forum: Fixing WordPress
In reply to: Font & Sidebar issue…Forum: Fixing WordPress
In reply to: linking page to a gallerythat’s essentially the same thing i’m trying to find out…here’s the only responses i’ve received:
http://wordpress.org/support/topic/90005?replies=6Forum: Fixing WordPress
In reply to: firefox vs internet explorerthe reason there are differences are due to the fact that Firefox is a standards-compliant browser…it takes what you have as code and renders it EXACTLY as is…Internet Explorere, on the other hand, thinks it is smarter than the coder…if there is an error in the code, IE displays it based on what it thinks you meant the code to mean, not what it actually says…and this is why i don’t use IE…
but have a look at your code..you only have a couple errors in the xhtml ( http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.marissainamerika.nl%2F )
after you fix those we can validate your css:
http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A%2F%2Fwww.marissainamerika.nl%2FForum: Fixing WordPress
In reply to: how to add a title without it appearing in the headerif you add your blog name in the options, which will cause it to appear at the top of the browser, but do not want it to appear in your header, then comment out the following line in your header.php file:
<?php bloginfo('name'); ?>Forum: Fixing WordPress
In reply to: Page Layout…Gone Wrong!!you validate with w3.org, not w3c.org, and that is the link i provided him…there are several errors that need to be corrected, which might fix his/her problem….
Forum: Fixing WordPress
In reply to: Page Layout…Gone Wrong!!my be due to the errors in your xhtml:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.tomdimmock.co.uk%2FForum: Fixing WordPress
In reply to: Add Column to Existing Theme (2 col. to 3 col.)my suggestion is find the 3 column layout you like, look at their CSS and apply changes to your site…the answer all depends on how you want your site to look exactly…
Forum: Fixing WordPress
In reply to: Add RSS feed to side barin my sidebar.php file i have the following:
< li >< a href=” < ? php bloginfo(‘rss2_url’); ? >” title=” < ?php _e(‘Syndicate this site using RSS’); ? >” > < ? php _e(‘RSS’) ; ? > < / a > < / li >
with css controlling the tags…
Forum: Fixing WordPress
In reply to: sidebar links / pagesok, i see what you’re saying…i may resort to doing this…however, i’m hoping there is another way to accomplish this..anyone?
Forum: Fixing WordPress
In reply to: sidebar links / pagesi was told the Manage >> Add Link was to add links to sites outside of your domain only…
besides, if i go there i see how to add my /photos/ url as a link, but how do i go about adding links to my ?pageid=2, ?pageid=12, etc pages?
Forum: Fixing WordPress
In reply to: Sidebare moving to lower part of websitetake a look at the xhtml and css results after trying to validate your site…fix those first and see what you come up with:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.nicetheman.net%2F
http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A%2F%2Fwww.nicetheman.net%2FForum: Fixing WordPress
In reply to: sidebar links / pagesok, maybe this was confusing…sorry if it was…here’s my site with the link “Photos” under the heading “PAGES”…this is the page i created using the “create page” section…
http://jeremyking.com/however, what i’d like to add is a link to “Photos” with the url /photos/…i can show you what it looks like on the sidebar if i manually enter the url for photos if you’d like to see that…