Meeker Jones
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: MAKING A COPY of the same site in subdirectory to work on itHey James, Thanks!
I think I may do that for one of our festival sites, but for the new one – I need to run a brand new subdomain – since that is our plan already.
So – I am back to asking the original question above!
Thanks for your suggestions.
Mika
Forum: Themes and Templates
In reply to: Cleaning up my conditional tags…helpooops forgot the Site :https://69.89.31.152/~littlgp0/ginny/
Forum: Themes and Templates
In reply to: Absolute Bottom?Oh how did I miss that.
thanks.I will study how to fix the rest.
Thank you for your help!meekr
Forum: Themes and Templates
In reply to: Absolute Bottom?Hey the css positioning I was looking for was FIXED – thank you!!
Also the validation – I was able to reduce the errors by a lot, thanks for letting me know about this. But there seems to be error messages that I can’t do anything about?
Are there some of these messages that all word press sites get?
A lot of them have to do with the “<” at the beginning – for example.Not sure how to clear all of these errors.
Thank you for your help.
Meekr
Forum: Fixing WordPress
In reply to: Can I run 2 blogs?Hmm I see.
Am I able to separate the blogs by separate images and colors?
Like different banner image, background color, and for news and books categories?I have a layout for each different pages – so wanted to continue with that in the news and books categories too. If somehow, this is doable, then, I will need to try this!
Thank you for your suggestion!
Meekr
Forum: Themes and Templates
In reply to: Footer – shows up on the right only on Firefox!IT WORKED!!! thank you so much.
For my info – what is it CLEARING?
if may ask…Again thank you!!
Meekr
Forum: Fixing WordPress
In reply to: Where does my blog appear?SO I am doing something wrong – still.
Now when I go to “news” it definitely points the “index” news page (with multiple posts)
but when I go into categories or archives (further deeper into the url hierarchy like …/news/category) – then when I try to go to other pages, it keeps the url,
so if I wanted to go to ABOUT page freshly, the url will stay at news/category/aboutWhich only leads to the 404 error page.
I am still struggling with the structure for this, but that is a different question…for now. If you can point out what I could do to fix this url “stuck” problem.,,, that would be great!!
Here is the temp site: https://69.89.31.152/~littlgp0/news/
Forum: Fixing WordPress
In reply to: Where does my blog appear?Yes! Thank you – this is what it was. Now got homepage and blog going.
Thank you, kmessinger!Forum: Themes and Templates
In reply to: Changing the PAGE WRAP color for each page. PHP?Thanks Sweeper.
I was able to change my footer colors for each page – using this technique.
This has been very helpful.
Thank you for sharing your knowledge!!!Meekr
Forum: Themes and Templates
In reply to: Changing the PAGE WRAP color for each page. PHP?The Sweeper,
Actually – I figured it out.
What you originally told me worked.HUGE HELP – now I can use this for unique footer colors and such, too – I will see.
Really really appreciate it!!!
Meekr
Forum: Themes and Templates
In reply to: Changing the PAGE WRAP color for each page. PHP?sorry about the bad BOLDING at the top – please ignore the bold towards the end…
Forum: Themes and Templates
In reply to: Changing the PAGE WRAP color for each page. PHP?Thank you so much The Sweeper
This works!
I have a custom site, so I did not have page ID – but the <head> section php worked.Further:
You gave me code to do 2 pages – I imitated the code for my 3rd -6th pages and it doesn’t seem to work…This is what you gave me
<style type=”text/css”>
#page-wrap { <?php
if (is_page(‘about’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/about.png);’; }
elseif (is_page(‘contact’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/contact.png);’; } ?> }
</style>To add more pages, the bolded part is what I will repeat – correct?
Before I seal it with the final “?> }” to close out the PHP.
or the wording “elseif” would be different for more pages? Somehow it is not working for the next 4 pages.<style type=”text/css”>
#page-wrap { <?php
if (is_page(‘about’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/about.png);’; }
elseif (is_page(‘contact’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/contact.png);’; }elseif (is_page(‘sample1’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/bg_sample1.png);’; }
elseif (is_page(‘sample2’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/bg_sample2.png);’; }
elseif (is_page(‘sample3’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/bg_sample3.png);’; }
elseif (is_page(‘sample4’)) { echo ‘background-image: url(‘.get_stylesheet_directory_uri().’/images/bg_sample4.png);’; }
?> }
</style>is what I got.
Any fault you see?
for the last 4 pages, the background doesn’t show up.Thank you!
Meekr