DebT
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom page template not workingOh Jeez I had no idea! Thanks, I’ll check it out in the morning and report back my success (I hope). Making dinner right now, so I’ll hopefully have a fresh view in the morning.
Forum: Themes and Templates
In reply to: Formatting Single Post/Comments page stylesI could not call the header I’d made for the blog page, I could never get that to work. The single post is pulling in my default header, with a link to the style sheet I made. My problem is I can’t figure out how to get the single post entry to follow it’s own specific rule, rather than picking up the one made for the rest of the web pages. I’ll take another look inside single.php to see if there’s a way I can give it a unique div or class.
And I still can’t figure out why the page is not centering, other than when I make a post the body tag mysteriously gets this class:
<body class=”single single-post postid-1 single-format-standard”>
I don’t know what to do with that. If I create a new class in my style sheet to fix the body formatting, what do I call it? Single? Single single-post? What’s the single-format-standard part ?
All I want is for the post page to look like the blog page:
https://tejadadesigns.com/eyecycle/blog/Forum: Themes and Templates
In reply to: Custom page template not workingI finally gave up trying to do what I wanted, and instead used the “blog” class mentioned above to refine my styles in my main style sheet. That has worked to format the Blog page, but now I can’t figure out how to style the “single post” / comments page. I’ll post that as a new topic, I don’t understand what files WP pulls in to create the single post pages and it seems to be using styles from someplace I can’t locate.
https://tejadadesigns.com/eyecycle/test/Forum: Themes and Templates
In reply to: Custom page template not workingSorry, I didn’t get an email regarding your response & just saw this. Thanks for the info on the centering problem, I’ll fix that pronto.
The link to the styles in header-blog.php is:
<link href=”https://tejadadesigns.com/eyecycle/wp-content/themes/eyecycle-framework/blogstyle.css” rel=”stylesheet” type=”text/css” />
and the blogstyle.css IS in there.Forum: Themes and Templates
In reply to: Custom page template not workingBTW I also added this to index.php
if ( is_front_page() ) {
get_header();
} elseif ( is_page( ‘blog’ ) ) {
get_header( ‘header-blog’ );
} else {
get_header();
}Forum: Fixing WordPress
In reply to: Two custom headers, can't get it to work.Aaaahhhh, I get it. The blog uses index.php and the other pages use page.php. That did the trick! Thank you SO MUCH, I never would have figured that out!
Forum: Fixing WordPress
In reply to: Two custom headers, can't get it to work.Its not the front page, its another page set up for the blog.
Forum: Fixing WordPress
In reply to: Two custom headers, can't get it to work.Esmi, thanks. I added the php to the page.php file and it still doesn’t work. Is my code okay?
Forum: Themes and Templates
In reply to: Apparently I'm not understanding custom page templates-help?It is set there.
Forum: Fixing WordPress
In reply to: Pseudo class confusion — how do I do it?What if I make .button-green an id instead of a class?
Forum: Themes and Templates
In reply to: Styles messed up on search result page – Please help!Thanks, that helped. The search.php template was fine, but it made me realize that the search results were li and a style I had set up for ul li totally messed up the whole page. Once I took that style out, it worked fine.
One more question though: Now on the search results page, my Contact Form is missing from the sidebar. Its on all my other pages — what would cause this to drop off?
Forum: Fixing WordPress
In reply to: How to fix javascript error–site very slow.The Java Console log (Firefox) says this, does it mean anything?
load: class com.facebook.facebookphotouploader5.FacebookPhotoUploader5.class not found.
java.lang.ClassNotFoundException: com.facebook.facebookphotouploader5.FacebookPhotoUploader5.class
at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:210)
at java.lang.ClassLoader.loadClass(ClassLoader.java:316)
at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:144)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:695)
at sun.applet.AppletPanel.createApplet(AppletPanel.java:723)
at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1870)
at jep.AppletFramePanel.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(AppletPanel.java:652)
at sun.applet.AppletPanel.run(AppletPanel.java:326)
at jep.AppletFramePanel.run(Unknown Source)
at java.lang.Thread.run(Thread.java:613)Forum: Fixing WordPress
In reply to: How to fix javascript error–site very slow.I’m not using any plugins at this point.
Forum: Plugins
In reply to: Adding CSS into page content in Edit Page?Yea, that worked! THANK YOU VERY MUCH! You can mark this thread as “resolved!”
Forum: Plugins
In reply to: Adding CSS into page content in Edit Page?I feel really dumb. I’m not getting the error message right now, but my pages are not picking up the new styles to remove the right column from the page.
This is what I’m getting:
https://corporategiftconcierge.com/work-samplestestimonials/
This is what I want: https://corporategiftconcierge.com/about/
I have the styles in with the page text on the about page, that’s why its working there.
This is what I have in onecol.css:
#sidebar { width: 0; overflow: hidden; visibility: hidden; display: none; }
.aside { width: 0px;visibility: hidden; display: none; }
#content-main { width: 800px; }
I put onecol.css in wp-content/themes/wp-framework/library/media/css. Is that right? All I want the pages to do (except for the blog page) is to pick up onecol.css to override screen.css.