desteele
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Harmonic] Featured Image displays on Posts page?No, I didn’t remove them. That was the result of adding that bit of CSS to my “Additional CSS section”
What I would want in a perfect world is when I’m in a post, to see both the embedded image linked to a separate full-sized image, along with the featured image at the top. But on the main page/blog page, to only see one of the large thumbnails. That might not be possible…
Des
Forum: Themes and Templates
In reply to: [Harmonic] Featured Image displays on Posts page?Well, that made the main page look like I wanted, but now it hides the featured image on the post as well… oh well, I guess I’ll just roll with it. Thanks for your help.
Des
Forum: Themes and Templates
In reply to: [Cubic] Cubic Title Font colorHey @heatherlarkin – I figured out all the elements I’ve been trying to get changed, and here is the Additional CSS to add:
.site-description{ color: #b2b2b2; } .site-title { color: #b2b2b2; } .site-header { background: #000000; border-bottom-color: #000000; } button.sidebar-toggle { background: #000000; color: #b2b2b2; border-left-color: #000000; }This will change the color of the header bar to black, change the sidebar toggle button to black with grey lines, change the title to grey letters, and change the long thin line at the bottom of the title and the short line between the title and the sidebar toggle button to black.
Damon
Forum: Themes and Templates
In reply to: [Cubic] Cubic Title Font colorWell, the code I used earlier had the unexpected consequence of turning the header transparent… so, I need help to turn the header from white to black, to turn the header font to #b2b2b2, and to turn the navigation on the far right black with #b2b2b2 lines.
I appreciate your help.
Des
Forum: Themes and Templates
In reply to: [Cubic] Cubic Title Font colorHeather,
Put this in the “Additional CSS” block and it should do what you want:
.site-header {
background: 000000;
}Forum: Themes and Templates
In reply to: [Harmonic] Color picker goneNevermind…I found it. 🙂
Thanks…
Forum: Themes and Templates
In reply to: [Harmonic] Color picker goneKathryn,
I know this is an old topic, but I wonder if you would help me modify the code you linked me to in a very small way?
I created a subdomain to hold my photo page and just used an additional WP install to handle, but as was the case before, I can’t control the colors easily. Your code helped solve that issue for the background, but now I want to change the header bar to be black as well. The URL is http://photos.damonsteele.com/, and I would like the header to be black with the embedded lettering to be a contrasting grey. I think the current color might be too dark.
Thank you very much for your help…
Damon Steele
Forum: Themes and Templates
In reply to: [Pacific] Image compressionOh, I can customize the link, and I put the direct external link in there, but it still offers up a reduced-size image and an altered URL.
Forum: Themes and Templates
In reply to: [Pacific] Image compressionI have done this and I still get a reduced-size image with the edited URL in my address bar:
https://damonsteele.files.wordpress.com/2017/09/equinoxgeese.jpg
-
?resize=640%2C800
Forum: Themes and Templates
In reply to: [Pacific] Image compressionAnyone?
Forum: Themes and Templates
In reply to: [Harmonic] Color picker goneThank you so much, that is EXACTLY what I needed! I really appreciate your time!
Des
Forum: Themes and Templates
In reply to: [Harmonic] Color picker goneWhy have a background color chooser if you don’t have the option to change the font color? My old blog is at damonsteele.wordpress.com
nevamind…after using the new password link several times I succeeded in getting it to change the password for me. But, this still seems to be a bug in the Automatic Upgrade plugin.
Forum: Fixing WordPress
In reply to: Upload not writeable and breaks blogAnd here’s a tip for those who don’t know how to find out the absolute path.
1. create a new text document.
2. place the following inside of it and save it:
<?php
$p = getcwd();
echo $p;
?>3. rename to path.php
4. place it into the directory whose path you want to determine.
5. in a browser, navigate to the relative URL/path of this file, ie: http://www.yoursite.com/desireddirectory/path.php
6. You’ll see your answer.
Forum: Fixing WordPress
In reply to: Upload not writeable and breaks blogOK, let me back up and say I’ll bet this fixes it on those mysterious cases because on my previous host, I could use the relative path. My new host, for whatever reason, requires the absolute path.