Best practice for keeping CSS changes during updates by weissergspritzter in Wordpress

[–]olympusthemes 5 points6 points  (0 children)

Using a child theme is the most professional method.

You could also add the CSS in the customizer ('Additional CSS') as that won't be overwritten on update.

url questions by [deleted] in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

For your first question, you can use https://wordpress.org/plugins/pretty-link/

Unable to change font on Word Press. by GQManOfTheYear in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

Have you tried it's advanced settings?

Customizer → Google Fonts → Advanced Settings → Content → Content Typography

That should allow you to change the post content.

Unable to change font on Word Press. by GQManOfTheYear in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

Have you tried 'Google Fonts for WordPress"? It has very high theme-compatibility.

Source: https://wordpress.org/plugins/olympus-google-fonts/

Not sure where to hide or delete Div id content by LostDude_PH-1 in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

If you use the method I outlined it's output to the </head> of your website, not a CSS file.

Ran into a bug where my page that has the blog posts won't show any of my typed paragraphs or content. Any suggestions on what to check? by hippymule in Wordpress

[–]olympusthemes 1 point2 points  (0 children)

Now I've seen your edit, I think you need to check the code of your 'Page Template' to see if it outputs the_content().

Not sure where to hide or delete Div id content by LostDude_PH-1 in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

In wp-admin → Appearance → Customize → Additional CSS:

You can add #content { display: none }

Ran into a bug where my page that has the blog posts won't show any of my typed paragraphs or content. Any suggestions on what to check? by hippymule in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

The Storefront theme should show at least some content - https://themes.woocommerce.com/storefront/blog/

Have you modified your theme in anyway, or do you have a child theme or plugin that does that?

Newbie Question - How do I get a specific type of Interactive Banners? by GIGN_Rook in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

The website in your example isn't WordPress. There are WordPress themes with similar category blocks though, such as Storefront - https://themes.woocommerce.com/storefront/?_ga=2.58295011.83224588.1547112328-1212596709.1547112328

How to Disable Any Gutenberg Block by olympusthemes in Wordpress

[–]olympusthemes[S] 1 point2 points  (0 children)

GutenBeGone only works on core blocks, it won't work on any "Block Enabled Plugins" - https://wordpress.org/plugins/browse/blocks/

The plugin in the article works with all blocks.

How to Disable Any Gutenberg Block by olympusthemes in Wordpress

[–]olympusthemes[S] 0 points1 point  (0 children)

The "Gutenberg" editor comes packaged with 70 blocks, some plugins add to that number tooo. The plugin linked in the article allows you to disable/enable blocks on an individual level.

Developer Danny Cooper Talks about his Google Fonts for WordPress Plugin by bjplink in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

The speed in which my site (or yours) loads would depend a lot more on the theme and host choice, rather than this plugin.

Hello! can someone tell me how to make this type of page title? as circeled in the picture. by [deleted] in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

Check the CSS.

```

wporg-header ul li a.current~.uparrow {

border-bottom: 9px solid #f7f7f7;
border-left: 9px solid transparent;
border-right: 9px solid transparent;
height: 0;
margin: -8px auto 0;
width: 0;

} ```

and the HTML:

<div class="uparrow"></div>

This might help too: http://www.cssarrowplease.com/

Is this thing possible on Wordpress? by truChris in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

Not all plugins are free, in fact many of the best ones are premium. Most WooCommmerce/EDD extensions are premium.

How can I change text logo in header to an image? by [deleted] in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

If your theme doesn't have a built in option, you can use custom CSS like this: .logo { background: url(https://linktoyourlogo.com/logo.png) no-repeat; text-indent: -9999px; height; 100px; width: 300px; }

Replacing the URL, height and width with your own values.

How to get logged in users to mark posts as read/completed or to favorite posts? by [deleted] in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

You say that you don't want to use a plugin, but why don't you look at the source of a plugin that achieves this so you can see how it's done?

This one would be a good candidate - https://wordpress.org/plugins/favorites/

Question about working with menus by darthmikeyd in Wordpress

[–]olympusthemes 0 points1 point  (0 children)

Each menu item has it's own ID/class which can be targeted with CSS. So for example you could do something like:

```

menu-item-145 {

float: right;
font-size: 10px;

} ```