scorendesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t work custom CSS with Highend ThemeSo, just send the URL you use to view the home page of your site. Copy/paste what’s in your browser’s address bar.
Forum: Fixing WordPress
In reply to: Can’t work custom CSS with Highend ThemeAre you working on a hosted server? Or a local computer?
Forum: Fixing WordPress
In reply to: Can’t work custom CSS with Highend ThemeSorry that didn’t work. Can you post a link to your site?
Forum: Everything else WordPress
In reply to: Break point best practice, Y/NAh, yes, sorry! Without !important, are these equivalent?
@media only screen and ( min-width: 480px ) and ( max-width: 980px ) { p { font-size: 20px; } } @media only screen and ( min-width: 0px ) and ( max-width: 479px ) { p { font-size: 16px; } }
@media only screen and ( min-width: 0px ) and ( max-width: 479px ) { p { font-size: 16px; } } @media only screen and ( min-width: 480px ) and ( max-width: 980px ) { p { font-size: 20px; } }
Forum: Everything else WordPress
In reply to: Break point best practice, Y/NThanks.
3. Yes, order matters.
But this:
@media only screen and ( min-width: 480px ) and ( max-width: 980px ) { p { font-size: 20px !important; } } @media only screen and ( min-width: 0px ) and ( max-width: 479px ) { p { font-size: 16px; } }
Has the same result as this, yes?
@media only screen and ( min-width: 0px ) and ( max-width: 479px ) { p { font-size: 16px; } } @media only screen and ( min-width: 480px ) and ( max-width: 980px ) { p { font-size: 20px !important; } }
Forum: Fixing WordPress
In reply to: Can’t work custom CSS with Highend ThemeSometimes these themes include !important in their declarations.
Try:
#header { background-color: #000000 !important; color: #fde017 !important; }
Forum: Fixing WordPress
In reply to: selector helpLesson learned.
Forum: Fixing WordPress
In reply to: selector helpI was confused by why it showed up in my Inspector.
Forum: Fixing WordPress
In reply to: selector helpThanks! Got it.
Forum: Fixing WordPress
In reply to: selector helpAh! It’s in the theme’s css! Sorry! I get it now.
.fix::after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
Forum: Fixing WordPress
In reply to: selector helpI still don’t understand how the theme inserts
::after
in the html or why I don’t need to insert it in my html. It appears to be a clearfix.Forum: Fixing WordPress
In reply to: selector helpSo, here’s how my theme styles post titles:
And here’s my solution to manually style any text in the same way:
<header class="post-header fix"><h1 class="posttitle">ABOUT US</h1></header>
Seem correct?
Forum: Fixing WordPress
In reply to: selector helpSorry. I may have mis-lead you about what I was looking for. Rather than controlling the style, I want to incorporate the ::after selector along with any h1.posttitle I manually create in my html. How do I use the ::after selector in my html?
Here’s a solution that gives the result I want, but it’s not utilizing the ::after style already set by my theme:
Thanks.
Forum: Fixing WordPress
In reply to: Permalink helpOK. I had an image named join-us.jpg. Deleted it, replaced it with a file named join-us-2000×600.jpg. I was then able to rename my page from join-us-2 to be join-us. Apparently the image name too was a problem! Thanks.
Forum: Fixing WordPress
In reply to: Permalink helpDidn’t think of that. I had one version in Pages, another in Posts. So I deleted both, emptied the trash. Didn’t help. Tried to create a new page, still getting join-us-2.