pinecones
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site backups happening 3 times per day- scheduled for weekly onlyI will repost there, thank you 🙂
Forum: Developing with WordPress
In reply to: Disabling “Mobile Site”?Thank you. Where is the themes directory folder?
Forum: Developing with WordPress
In reply to: Disabling “Mobile Site”?So I added a blip of blackground color command into the @media code and it forced a background on the mobile version. This at least makes the mobile version of my site functional for the moment. It forces a background on all menus as well as all page content.
Downsides: It forces a background over the header, which currently relies on a background image as a centered site logo, so I have an opaque green bar covering my site logo at the top e_e Also, it overrides the footer backgorund colors. Which isn’t terrible, but I might have to tweak some text coloring.
Other downside: The mobile version is still ugly and terrible and I would still love to get rid of it completely.
I did dabble in deleting the @media tags, as well as the handheld and transform coding, and found a tip on getting rid of a mobile command in the header.php coding. Obviously this makes the website a bit of a wreck. I would just need to go in and change my width and placement commands and see if I can get a better mobile adaptation of my desktop site.
Before I switched to WP I never had a mobile version. I just cross-checked all my coding to make sure the site looked good and was functional on a phone. Personally, when I’m on a phone, I’m desperate to find the “view desktop version” on any site I visit. And I know I’m not alone in that. Mobile versions suck when you actually have heavy content and a shop you’re trying to run!
Forum: Developing with WordPress
In reply to: Disabling “Mobile Site”?The only thing I’ve edited that I can see being a problem, is that I forced transparent backgrounds on table content. So, each page has a content background defined in the style.css file, I wanted that a 90% opaque color, as I have a nice but not-too-busy nature background image.
So in the page coding for each page, I had to add a command of background:transparent to ever table cell. That was the only way I could find to get rid of the solid backgrounds that the page customizer defines.However, even my blog and shop pages are turning transparent, and I have no access to their page coding (so I haven’t altered the page code to force transparent table backgrounds), which means something in the style sheet must be removing their content backgrounds.
I have changed my style.css coding, yes. Primarily I’m adjusting content size, margins, and backgrounds to customize the appearance of my site (I find the default storefront theme very ugly with far too much wasted space). I haven’t entered entirely new coding not have I deleted any. I’m just changing values.
I keep my edits very organized and color coded so I know what I did and why. I don’t touch the coding if I don’t know what it does. I haven’t touched anything menu related. I have assigned no transparent backgrounds, only rgba opaque background colors into existing color commands.I can’t figure out how to make a child theme, as has been recommended to me, so for now I keep my edited code in one document and the unaltered original in another just in case. I’ve only been using WP for like 2 months now, I’m learning lots every day.
Maybe I could find a way to command the background image be disabled on mobile… This way there will be no background image, just a solid color. I would prefer trying that over trying to hack out mobile adaptation commands.
Forum: Themes and Templates
In reply to: [Storefront] Need to hide Page Headers on non-wooocommerce pagesI found a plug-in that disables titles altogether 😀 Try searching plugins for “titles” and it should pop up!
Forum: Themes and Templates
In reply to: [Storefront] Need to hide Page Headers on non-wooocommerce pagesIn the Storefront code, those title texts are styled by:
.alpha,h1{font-size:2.617924em;line-height:1.214;letter-spacing:-1px}.
and also;
.alpha,.beta,.delta,.gamma{display:block}If you wanted to hide ALL .alpha titles, you could alter the code, I think, to:
.alpha{display:none}.beta,.delta,.gamma{display:block}But the .alpha titles include shop section titles and blog post titles. I just played around with that to see if I could somehow get rid of those pesky page titles. I’m not versed in CSS, so triple check me. I just tinker with the code to get it to do what I want.
Again, assuming we’re talking about the same thing here. One possible creative work-around is the change the text that that title displays. So you can change “Contact Us” to “Want to know more?” or “Drop us a line!” or something catchy like that that blends in better.
Forum: Themes and Templates
In reply to: [Storefront] Need to hide Page Headers on non-wooocommerce pagesDo you mean the big header text, like “ABOUT US” and “CONTACT” and “BLOG”, etc, that show up above the page content on each page?
I got rid of these by editing each individual page’s code. I adjusted the page margins upward, I think 75x or 150px. This forces the page content higher up on the page, and covers that title text. I don’t like the title text either.
The only slight issues with doing this were:
1. If you adjust the margins too high via the little, square, colored block-editor menu on your visual “page builder”, you risk moving the margin so high that that square clickable menu on the visual page editor goes out way up out of reach and can’t be seen or clicked again. I hope that makes sense… The work-around is to just edit your margin within the code/text interface if you need to edit the margins more, or use the menu again. Just lower the margin in the code view nd switch back to the visual builder view to access the square menu. It’s easy enough.2. This doesn’t apply to content pages like the blog and the shop front. You can’t edit their content code through the page editor. So you can’t force their content margins higher.
There’s probably a way to hide them in the CSS coding. I haven’t tried yet, but now that I’m thinking about it I might.
Forum: Themes and Templates
In reply to: [Storefront] Issue with Menu with Storefront ThemePosting to see what replies you get. I’ve had to plow through a jumbled heap of CSS to figure out how to customize my layout. I still have some problems with it.
I made a centered logo by hiding the logo/site branding blocks and making a custom centered background. The background image is my logo with transparent background, so the master background color still shows through. Thus my logo appears centered and scales with the page. It’s not a link and can’t be interacted with though. It’s far from perfect, but for the moment it’s the only fix I’ve come up with.
I haven’t tried to alter the menus themseles yet so I have no suggestions there…- This reply was modified 5 years, 2 months ago by pinecones.
Forum: Everything else WordPress
In reply to: How common are malicious sign-in attempts?Good to know that’s a fairly normal number, thank you. I know bots are out there always trying to get into any crack they can.
I have my website backing up weekly right now.
Forum: Developing with WordPress
In reply to: Content & menu backgrounds disappear on mobileThank you!
Forum: Developing with WordPress
In reply to: Can’t seem to override background coloring…Maybe I can’t edit a 3rd time. I found the last scarp of coding that was making certain table cells or text areas have a black background- all the coding I changed was page-specific. I suspect there’s a command in the style.css document that’s dictating the auto-black backgrounds. I didn’t need to use !important, but I did need to add background-color:transparent to every table cell and delete a scrap of coding on a few pages that were trying to insert a black-to-black solid gradient background-image.
It appears theo nly loose end is the checkout page when the cart is empty; the error message within the page’s content box is still black. But I can live with that for now.
Forum: Developing with WordPress
In reply to: Can’t seem to override background coloring…I haven’t explored creating a child theme yet.
“First, create a new folder in your themes directory, located at wp-content/themes”
Frankly I’m not sure where to find a themes directory. I’m pretty new to WP. I’ve always just coded my own stuff but needed a shopfront/cart feature so I made the switch.Right now I’m working the coding in a text document and have the originals and edits saved. It’s really nice because I can organize and color-code the massive jumble of CSS code.
How can I edit my post to provide the site I need help with?
Edit:
Using !important gave me what I wanted for the footer. Woohoo! Thank you. I know HTML very well but am new to CSS, a little slow on the uptake.I’m still struggling with the black content background on my pages. Not the master “page background”, but the background behind the content on the page. Forgive my lack of terminology there.
When I edit specific pages, even if I leave the code alone and use the editing tool to assign the background I want, the background once published is still solid black. The page-builder interface shows it accurately, but the Preview or Publish button produce different result. I haven’t changed any coding anywhere to force a black background, it’s just been like that since I created my website.
If I change the margin of the page content, say, to move its placement down on the page, I reveal the page’s default ‘content’ area, just like the blog or shop pages use. That ‘content area’ is hidden behind all of the custom text area (with black background) on the page.
So I would think that adding a background color command within the same tag that’s changing the margin of that custom content would affect its background, but nope. I’ve tried forcing a background color change into every div and every table and can’t get the black background to change -_-‘ (I delete new changes that produce no results, of course)Edit#2:
Out of frustration I started editing things that didn’t seem reasonable. Turns out that I have to set background color to transparent for individual table cells < td >. That seems very strange to me. So now my custom pages are going to be just fine; each table will have the cells’ backgrounds set to transparent.The problem now, is that things I can’t edit code on like the cart, for example, still have black backgrounds. I’m trying to figure out what the ‘root’ of this is. I’m assuming it’s somewhere on the style.css sheet and am looking for it actively…
Forum: Everything else WordPress
In reply to: Storefront theme: No Post Summaries?THANK YOU!!! 😀 😀 😀 😀
I have yet yo explore the world of plug-ins. I just recently started using WordPress. I’ll see what else is out there!