solarwind
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing permalink structureGot it sorted, used full links to the javascript in header.php, also moved slider code up there and gave images full links, to avoid changing single.php archive.php etc,
Thanks for your help will look at changing _excerpt() instead of the_content()Ta
Forum: Fixing WordPress
In reply to: Changing permalink structureHi Esmi,
sorry for the confusion, everything works with the permalink structure set to default, as it was when you looked at it, I will make the change to /%postname%/ so you can see exactly what is happening.Thanks again
Forum: Fixing WordPress
In reply to: Add spaces in WordPressHi Dixie, sorry it’s not working for you, this might help
Live demo for you:
hereHave a look at the source code, add the following to your css file
p.space {word-spacing:50px; }
good luck.
Forum: Fixing WordPress
In reply to: Changing permalink structureHi Esmi,
Thanks for replying
I have no active plugins at the moment,
and have just checked default theme, but that didn’t highlight any problems.
The blog home page is fine,
nightofa1000thrills.com/chatter/the problem only occurs when category or archive is selected,
I feel the solution is on the tip of my tongue, but just can’t figure itForum: Fixing WordPress
In reply to: Add spaces in WordPressForum: Fixing WordPress
In reply to: Add spaces in WordPressIf you are making a post use html mode
Enclose the text you want spaced out within a class tag.<p class=”space”>hello there out there.</p>
Your css: p.space {word-spacing:20px; }
Forum: Fixing WordPress
In reply to: Changing permalink structure botched my siteHi,
I have a similar problem, and am not able to resolve.
I will try to explain what is happening.https://www.nightofa1000thrills.com/chatter/?page_id=2
the above link is the default structure. and works fine, but when I change to /%postname%/
https://www.nightofa1000thrills.com/chatter/about/
following the file pathway to images results in
https://www.nightofa1000thrills.com/chatter/about/images/desert_scene.jpg
instead of
https://www.nightofa1000thrills.com/chatter/images/desert_scene.jpg
I have done a couple of blogs before and don’t recall this problem.
Another example, when clicking onto a category and following pathway to missing image
https://www.nightofa1000thrills.com/chatter/category/1000-thrills-news/images/desert_scene.jpg
the permalink structure seems to be inserting itself into the pathway.
Hope I made some sense, any tips would be great,
Cheers Paul
Forum: Everything else WordPress
In reply to: analytics and search engine resultsHi once again. I have done a little investigating and arrived at a couple of conclusions regarding my previous post. If any one is vaguely interested you can follow my thoughts below. Cheers.
PostForum: Everything else WordPress
In reply to: Can’t find tag line on a postYou may have to install a plugin.
UTWSorry if this is too obvious and you already have one installed.
Forum: Themes and Templates
In reply to: Display selected category archivesForum: Fixing WordPress
In reply to: Embedded Google Calendar = No Sidebars on PageNice one, look forward to seeing where your travels take you.
Forum: Themes and Templates
In reply to: Creating a custom theme – will this be easy?Hi there, I’m no expert to be sure, but it looks possible
First I think, and don’t take this as gospel, you need to create your design as a real web page, then when you are happy with the look in IE Firefox etc you need to put your code into a theme.
Headaches for sure, but worth the hassle when it works.
Generally I think themes are set out, when you look at the files into, as far as your initial design is concerned:header
sidebar
footer
You need to fit your design around the php in these files and keep checking source code for div order.
It took me a fair while, and I’m still here seeking help and advice for similar stuff. Hope this helps in your efforts. Good luckForum: Fixing WordPress
In reply to: Embedded Google Calendar = No Sidebars on PageHi again missadventures.
Check this.
https://central12.com/pg41.htmput your calendar in a div
I changed sidebar from
text align right to left,added div to search box and floated left
moved position of top ad.
Not sure how this will effect your other pages.
Looks ok in ie and firefox
Once again. good luck. PaulForum: Fixing WordPress
In reply to: Embedded Google Calendar = No Sidebars on PageNo one is answering my post either, so I thought I’d give yours a go.
Prob not the best solution,First strip off table elements from embedded calendar.
Put it in a div instead.
<div id=”goog”><iframe></div>
Move whole thing
Insert just above your footer div…
In your style sheet
#goog {
position:absolute;
top:130px;
left:250px; }Good luck Paul
Forum: Plugins
In reply to: Styling authors own commentsThanks for your answer, I kind of know what I need to do,
but getting the correct configuration is eluding me.<li id=”comment-<?php echo $commentcount ?>” class=”<?php comment_type(‘comment’,’trackback’,’pingback’); ?>”>
<p class=”header<?php echo $commentalt; ?>”><?php echo $commentcount ?>.I’m thinking I need to add $commentme, after commentalt in the above.
And:
add commentme in the following code<?php
$isByAuthor = false;
if($comment->comment_author_email == ‘you@your_email_address’) {
$isByAuthor = true;
}
?>changing the
if($comment->comment_author_email ==
to if($header->headerme ==
But ERRORS all over how I try
I am a right proper php novice and shouldn’t be dabbling with things I don’t understand,
but here I am, up to my neck.
If you need more code, or you have the time any further guidance would be appreciated.Thanks again, just had a quick look at your blog v nice, will bookmark for a longer look later. Cheers