jkovis
Forum Replies Created
-
Just to be clear, you’re trying to re-upload an image (for example, 200913111171101421168.jpg) via the WordPress uploader and you receive this error?
Forum: Fixing WordPress
In reply to: Media Library won’t upload imagesAre there any warnings or error messages that display when this happens?
Is it possible to check your server’s error logs?
Forum: Fixing WordPress
In reply to: Icons DisappearingCan you provide the URL to your site?
Forum: Fixing WordPress
In reply to: How to change font size/color on sidebar widgetAdd this to the theme’s style.css file:
h2.widgettitle { margin-bottom: 10px; border-bottom: 4px double #9b9b9b; color: #111111; font-size: 18px; }
Originally part of this thread: https://www.ads-software.com/support/topic/322873
I have an error in the spot the Upload button should be so I need to revert back.
What does the error say?
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesNow maybe you can tell me why the date image on the about and contact page is missing the bottom half
I’m seeing the date fine (Oct 8 for the About page and Oct 18 for the contact page)…can you let me know how it’s supposed to display?
Forum: Everything else WordPress
In reply to: Who marks threads here as [resolved]?hmm…I opened this thread this morning but I don’t see how to mark it resolved.
Can someone let me know how the user who opens a new thread marks it as [resolved]?
Thank you
Forum: Fixing WordPress
In reply to: Blog title not showing upcould you tell me how to increase the font size for "Stress Bully"?
Go to line 117 in the theme’s style.css file and replace:
#header h1{ width: 235px; height: 81px; line-height: 81px; /*text-indent: -9999px;*/ text-indent: 35px; } #header h1 a{ width: 235px; height: 81px; display: block; /*background: url("images/logo.png") no-repeat 0 0;*/ }
with:
#header h1 { /*width: 235px;*/ /*height: 81px;*/ /*text-indent: -9999px;*/ line-height: 81px; text-indent: 35px; font-size: 50px; margin-bottom: 10px; } #header h1 a { display: block; /*width: 235px;*/ /*height: 81px;*/ /*background: url("images/logo.png") no-repeat 0 0;*/ }
To increase the “Stress Bully” text size, increase the font-size: value. To increase the space between the “Stress Bully” and “on-site chair massage” text, increase the margin-bottom: value.
Forum: Fixing WordPress
In reply to: sidebar spacingI’m definitely not a great xhtml/css coder and there are a ton of much better tutorials out there, but here how I attack these kinds of alignment issues:
The basic idea is create a container wrapper that will hold two or more
<div>
s side by side. You then float the<div>
s together in whatever order you want. For example, a div with float:left; will go as far left as it can and a<div>
with a float: right; will go as far to the right as it can.After you have two floating
<div>
s you need to clear the float or everything will keep being push one way or the other. That is where<div class="clear">
is used. Float one<div>
left, one<div>
right and then clear. In the first example below, the<div id="blog-post-container">
is being floated next to<div id="sidebar">
and is then cleared by<div class="clear">. Note that each of the floated
<div>s widths are important and should add up to be less than or equal to the
<div id=”container”>(padding left or right also increases the width of the
<div>`).XHTML:
<div id="container> <div id="sidebar"> <!-- some sidebar content goes here --> </div><!-- end #sidebar --> <div id="blog-post-container"> <!-- some blog-post-container content goes here --> </div><!-- end #blog-post-container --> <div class="clear"></div><!-- end .clear --> </div><!-- end #container -->
CSS:
#container { width: 980px; /* no float on this div */ /* other css styles go here */ } #sidebar { width: 240px; float: right; /* other css styles go here */ } #blog-post-container { width: 740px; float: left; /* other css styles go here */ } .clear { clear: both; }
After you set up your
<div>
s and their floats you can then place non-floated content inside like below (like the WordPress Loop):<div id="container> <div id="sidebar"> <!-- some sidebar content goes here --> </div><!-- end #sidebar --> <div id="blog-post-container"> <div id="post-1" class="post"> <!-- some post-1 content goes here --> </div><!-- end #post-1 --> <div id="post-2" class="post"> <!-- some post-2 content goes here --> </div><!-- end #post-2 --> <div id="post-3" class="post"> <!-- some post-3 content goes here --> </div><!-- end #post-3 --> </div><!-- end #blog-post-container --> <div class="clear"></div><!-- end .clear --> </div><!-- end #container -->
Forum: Fixing WordPress
In reply to: Increasing the visibility of my blog-reply namesChange the color: value of line 152 of custom.css (leave the !important part)
.custom .headline_area h1, .custom .headline_area h2 { border-bottom:1px dashed #A0C544; color:#444444 !important; font-family:Georgia,Arial,sans-serif; }
#e8e8e8 is the white-ish color use on the front of your blog
For the comment number change the color: value on line 204 of style.css
.comments_intro span { color:#111111; line-height:1em; }
I also highly recommend trying the Firebug plugin for Firefox.
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesyou don’t need to change the code in thumbnail.php…it’s already set up.
What you need to do is edit the post/page and create a custom field with “thumbnail” (no quotes) as the KEY and the image URL as the VALUE. Click the post/page and then go view it.
After you’ve added one “thumbnail” custom field you don’t have to re-type it each time as it will appear in a dropdown.
Forum: Fixing WordPress
In reply to: Blog title not showing upYou can either replace logo.png with an image the same size or:
Go to line 117 in your theme’s style.css file and change
#header h1{ width: 235px; height: 81px; line-height: 81px; text-indent: -9999px; } #header h1 a{ width: 235px; height: 81px; display: block; background: url("images/logo.png") no-repeat 0 0; } #description{ width: 860px; color: #fff; display: block; font-size: 16px; padding-left: 40px; margin-top: -15px; text-transform: lowercase; z-index: 100; }
to
#header h1{ width: 235px; height: 81px; line-height: 81px; /*text-indent: -9999px;*/ text-indent: 35px; } #header h1 a{ width: 235px; height: 81px; display: block; /*background: url("images/logo.png") no-repeat 0 0;*/ } h1 span.inv { visibility: visible; } #description { width: 860px; color: #fff; display: block; font-size: 16px; padding-left: 40px; /*margin-top: -15px;*/ margin-top: -25px; text-transform: lowercase; z-index: 100; }
To control how far left/right the Stress Bully text is alter the value for #header h1 { text-indent: 35px } (the greater the value the more it moves right)
To control how far up/down the “on-site chair massage” text is alter the value for #description { margin-top: -25px } (the more negative the value the more it moves up)
Forum: Fixing WordPress
In reply to: single.php ??Good to hear. Can you mark this thread as resolved?
Forum: Fixing WordPress
In reply to: 2 problems – Title won’t budge and page thumbnail duplicatesmargin-top is there, I had it at 30 - I have put it all the way up to 100px just for grins and its sticking like glue.
I’m seeing the text moved down…have you cleared your browser’s cache? Also, which browser are you using?
I am only removing the image from the post body - its still in the gallery. When I take it out of the post body - it removes it from both places.
what is the URL of the image? Is the image URL in a custom field called “thumbnail” (no quotes)? If not, see this post (I’d use the image’s full URL though).
Forum: Fixing WordPress
In reply to: RSS feed problemdid you replace https://www.sweetfindsblog.com/posts/feed/ with https://www.sweetfindsblog.com/feed/ in Feedburner?
I just did a quick test with https://www.sweetfindsblog.com/feed/ and feedburner recognized it fine: