kristen.ncl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why can't I get the sidebar to appear on my blog page?I figured it out. Here is what I did:
In Header I changed
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
to<?php if( is_home() ) :?> <link rel="stylesheet" type="text/css" href="custom css file" media="screen" /> <?php else :?> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> <?php endif;?>
Then I made a custom css file to modify the #primary width settings.
Forum: Fixing WordPress
In reply to: Why can't I get the sidebar to appear on my blog page?Unfortunately this plugin makes changes to all of my pages – not just the blog page. I am only looking to change that page / display of posts.
Any other suggestions?Forum: Fixing WordPress
In reply to: Why can't I get the sidebar to appear on my blog page?I’ll give this plugin a shot. Thanks for your advice!
This is what worked for me:
.one-column #page { margin-top: 0px; margin-bottom: 0px; max-width: 1000px; min-width: 930px; } @media (max-width: 800px) {} #main #content { margin: 0 0; width: 100%; }
Forum: Fixing WordPress
In reply to: Edit .singular .entry-title on Post not PageWow thanks for your help! This worked great – and so simple.
Forum: Fixing WordPress
In reply to: SEO Problem? Listing each page seperatelyOK. Thanks for the heads up!
Forum: Fixing WordPress
In reply to: Onmouseover Table – Everything is open right away?I finally found the source I referenced to setup my page: https://www.w3schools.com/Dhtml/tryit.asp?filename=trydhtml_menu10.
I restored the code that had been stripped out by the visual editor and things are working fine. I’ve read a bunch of forums with similar HTML -> Visual Editor problems. Hopefully WordPress will get this figured out.Forum: Fixing WordPress
In reply to: Onmouseover Table – Everything is open right away?Still can’t figure out how to get my drop down menu / table tabs to be closed on page refresh / open.
I think I lost the code needed when I switched from HTML to Visual view in the page editor.
Any suggestions?Forum: Fixing WordPress
In reply to: Contest Submission Button that Charges ParticipantsHey, did you ever find anything that works for this? I’m looking for something similar.
Forum: Installing WordPress
In reply to: Child Theme Stopped Working after Theme UpdateNot sure what the problem was, but my new one works. Maybe it was a conflict with a plugin. Anyways, issue resolved.
Forum: Fixing WordPress
In reply to: Move image in Header with Positioning TagsI figured out how to do this with only some minor changes. I floated the slideshow to the left, fixed the margins of the page, and floated the other image to the right and whala.
Thanks!Forum: Fixing WordPress
In reply to: Page Structure Problem with Smaller Window SizeC,
I finally figured out how to use Firebug, and I got this resolved. Thanks so much for your help!Forum: Fixing WordPress
In reply to: Text beyond Content AreaGood point. Here is a link to my site: MollerDecorators.com
ThanksForum: Fixing WordPress
In reply to: Move image in Header with Positioning TagsIt is my understanding that the image and its location should be added and edited in style.css, in my Child theme. Is that not correct?
Forum: Fixing WordPress
In reply to: Page Structure Problem with Smaller Window SizeHey, so I hear what you’re saying. The padding needs to go. I just can’t seem to get rid of it. I wound up getting everything centered by editing this:
/* One column */
.one-column #page { auto-width: 960px;}
to this:
/* One column */
.one-column #page { width: 960px;}
Could the padding be controlled by .one-column as well?
I’ve tried getting rid of the 2em, changing it to 0em, changing it to auto, nothing has worked so far.