jsg442
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Exclude a Single Page from Inline & Defer CSSSeems like that did the trick! I have not been able to reproduce the glitch after heeding your advice. In case it will help anyone in the future, below is what I found from the full CSS and pasted into critical CSS. Appreciate your assistance Frank.
.et_pb_column_4_4 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before{content:'3 .column.size-1of3'}.et_pb_column_3_4 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_2_3 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before{content:'2 .column.size-1of2'}.et_pb_column_1_2 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_3_5 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_3_4 .et_pb_column_3_8 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_1_3 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_2_5 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_1_4 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_1_5 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before,.et_pb_column_1_6 .et_pb_blog_grid .et_pb_salvattore_content[data-columns]:before{content:'1 .column.size-1of1'}
- This reply was modified 3 years, 9 months ago by jsg442.
Forum: Plugins
In reply to: [Autoptimize] Exclude a Single Page from Inline & Defer CSSSure, will give it a shot and update if there is any progress. Thanks again
Forum: Plugins
In reply to: [Autoptimize] Exclude a Single Page from Inline & Defer CSSHi Frank, thank you for your fast response. I have to apologize because I just noticed a very recent post here that you answered already dealing with the same issue. As with that poster, I am actually not using the premium Critical CSS service. In that case you had offered a solution to adjust some PHP, but I’m afraid that is a bit beyond my level at the moment. Guess there is no easy way to do this otherwise? Thanks again very much for your help.
Forum: Themes and Templates
In reply to: [Sela] add author nameI see, thank you for the insight! Will take a look.
Forum: Themes and Templates
In reply to: [Sela] add author nameHello,
I would also like to display the author name on blog posts. But I’m wondering if it is possible to do this by making edits to the “Additional CSS” section of the Customizer? This is where I have made some other CSS changes before. As I don’t have experience to work with a child theme, was hoping that there would be a way to do it directly in the CSS Editor.
Many thanks for any help.
Forum: Themes and Templates
In reply to: [Sela] Change Page Title Color On Only One PageThank you for the tips, appreciate all the help. I did notice that it is easy to make the CSS changes with the built in editor. Will test the code modification that you mention David. Thanks again everyone!
Forum: Themes and Templates
In reply to: [Sela] Change Page Title Color On Only One PageI did a bit of research and took a crack at some CSS code, and it seems I solved the issue I mentioned above. Specifically the problem that when I modify the home page title to be a different color or font size for example, the testimonials by-line on the front page was also modified. I am posting the below code to check with everyone here much smarter than myself with CSS to see if there is any issue with the code. If not, maybe it can help someone else who runs into a similar problem.
.home .entry-title { color: #f45b41; font-weight: bold; font-size: 30px; } .jetpack-testimonial .entry-title, .jetpack-testimonial-shortcode .testimonial-entry-title { font-size: 14px; color: #41b2f4; }
In this way the font size and color of the testimonial by-line is not affected by changes to these properties on the page title. Much appreciation to all of the regular contributors here, as without searching through past issues I would have no idea where to even begin.
Forum: Themes and Templates
In reply to: [Sela] Change Page Title Color On Only One PageI think I figured it out… this is how I modified the code and it seems to do the trick:
.home .entry-title { color: #f71616 ; font-weight: bold }
The only problem is that I just noticed, it seems this code is also modifying the text of the by-line of the 2 testimonials on the front page. Any way to limit the changes so it just affects the page title and not the testimonials section? Thanks again
Forum: Themes and Templates
In reply to: [Sela] Change Page Title Color On Only One PageWorked perfectly, thank you! If I could bother you for one more little thing, how could I modify that code so the text is also in bold? Thanks again!!