corenominal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Stretched logo in SafariHi ??
Not just Safari, it stretches in Edge for me too. I added the following CSS it fixed it. Not tested in other browsers.
#logo { width: auto; }
Forum: Fixing WordPress
In reply to: Logo looks bad when I zoom inHi ??
Using SVG, instead of PNG should fix this. SVG are perfect for scaling without loss of quality. Hope this helps.
Forum: Fixing WordPress
In reply to: Redirected link to new URL shows old URL in the addressIt looks like the redirect is working correctly for domain but only matches the domain exactly without any slugs. E.g.
- https://adventuresinmommydom.org REDIRECTS
- https://adventuresinmommydom.org/science-sundays/ DOES NOT REDIRECT
This can be confirmed with the following wget commands:
wget -SO- -T 5 -t 1 https://adventuresinmommydom.org | more --2021-08-07 12:56:45-- https://adventuresinmommydom.org/ Resolving adventuresinmommydom.org (adventuresinmommydom.org)... 216.158.227.83 Connecting to adventuresinmommydom.org (adventuresinmommydom.org)|216.158.227.83|:80... connected. HTTP request sent, awaiting response... HTTP/1.1 301 Moved Permanently Connection: Keep-Alive Keep-Alive: timeout=5, max=100 content-type: text/html content-length: 707 date: Sat, 07 Aug 2021 11:56:45 GMT server: LiteSpeed location: https://ticiamessing.com/ Location: https://ticiamessing.com/ [following]
wget -SO- -T 5 -t 1 https://adventuresinmommydom.org/science-sundays/ | more --2021-08-07 13:03:03-- https://adventuresinmommydom.org/science-sundays/ Resolving adventuresinmommydom.org (adventuresinmommydom.org)... 216.158.227.83 Connecting to adventuresinmommydom.org (adventuresinmommydom.org)|216.158.227.83|:80... connected. HTTP request sent, awaiting response... HTTP/1.1 200 OK Connection: Keep-Alive Keep-Alive: timeout=5, max=100 content-type: text/html; charset=UTF-8 x-pingback: https://ticiamessing.com/xmlrpc.php link: <https://ticiamessing.com/wp-json/>; rel="https://api.w.org/" link: <https://ticiamessing.com/wp-json/wp/v2/pages/2521>; rel="alternate"; type="application/json" link: <https://ticiamessing.com/?p=2521>; rel=shortlink x-litespeed-cache-control: public,max-age=28800 x-litespeed-tag: ec0_HTTP.200,ec0_page,ec0_URL.384284c2754c2473cebd747c8e5bbc00,ec0_Po.2521,ec0_PGS,ec0_ etag: "100763-1628337785;;;" x-litespeed-cache: miss transfer-encoding: chunked date: Sat, 07 Aug 2021 12:03:05 GMT server: LiteSpeed
Does CPanel offer the option to do a “Wild Card Redirect”? If so, this should redirect all pages on the old domain to the new domain.
Forum: Fixing WordPress
In reply to: Redirected link to new URL shows old URL in the addressHi David ??
Can you share the link so I can take a look? No problem if not, but without the address I could only speculate as to why this is happening.
Forum: Fixing WordPress
In reply to: Style header or text based on form entriesHi ??
I’m not sure about any plugins, but this sort of thing can be handled with some JavaScript. Here is some example code: https://jsfiddle.net/v3cujs7k/1/
Hope it helps.
Forum: Fixing WordPress
In reply to: slide windowHi ??
Do you have a link I can look at? It might be easier to debug if I can see your code. Feel free to DM me on Twitter if you don’t want to share here.
Forum: Fixing WordPress
In reply to: Header Overlay position problemThank you. I will try this out next time I’m working on the site. So essentially do I have to replace the original html and css or can I just add this to the “additional css” section under “Customize”?
The code I provided was just an example of how to position elements. You might not need to replace the existing HTML, you might be able to adjust/edit the existing CSS.
I guess that’s a stupid question. I wish the code was easy to search so I could find what controls what…because I otherwise know how to make edits to css once I find the code that is controlling what I want to change.
You should be able to find the elements by opening your browser’s Inspector. Right click on your page and choose “Inspect”. See: Using the browser inspector
WordPress sometimes confuses me because there is the css in the wordpress editor and then there is the cpanel code. Is it safe to assume the html part I change is in cpanel?
I’m not sure of your set-up, but it sounds like you are not editing the files in a traditional editor. You might be able to edit your theme’s CSS directly within WordPress by choosing “Appearance -> Theme Editor” from the WP menu.
Hope this helps! ??
Forum: Fixing WordPress
In reply to: slide windowHi ??
Here is some example code: Example slide in from left. Not sure it’s exactly what you are looking for, but it might help.
Forum: Fixing WordPress
In reply to: Header Overlay position problemHi ??
This should be doable with CSS. You want to be looking at positioning. Does this fiddle help at all? Example positioning with CSS
Note, I’ve not included any responsive break points in the example, but these could be added to adjust the positioning for different device types.
Cheers,
Philip- This reply was modified 3 years, 7 months ago by corenominal. Reason: Note about responsive postioning
- This reply was modified 3 years, 7 months ago by corenominal. Reason: Updated fiddle
Forum: Fixing WordPress
In reply to: Center footer title and links in mobile.This worked for me, although not sure it fits your requirements exactly?
@media (max-width:768px){ .footer-container .footer-column { text-align: center; } }
- This reply was modified 3 years, 9 months ago by corenominal. Reason: Added screenshot
Forum: Fixing WordPress
In reply to: Scroll bar Mobile shopping cartYou could try adjusting the CSS, this worked for me, although only tested in Chrome on the desktop: https://ibb.co/KK7S920