Edit Footer CSS
-
I read about working with the editor, child theme and so on but I am not confident enough already to do all of this to solve my problem:
I managed to hide parts of the footer. But actually I would like to edit what was written there into my companies info.
How or can I do this with css?If not:
How Can I make the footer smaller or even delete it?Or: how can I at least add something to the copywrite?
Hope sombody can help the greenhorn.
-
Hello! You can’t change company info in css. It used only for style.
for setting of footer size, you must find his class. then change param “height”
You can do it using CSS, but only if you have something simple that you want to replace it with. Go to Appearance → Customize → Layout Options and add this to the Additional Style field:
.site-footer .credit-info { display: none; } .site-footer .site-info:after { content: 'My Company Info'; float: right; }@ entropia Stas:
Thanks. But what is ‘class’ and where do I find it?@ CrouchingBruin: unfortunately that code doesnt work. Nothing is shown. !?
Any idea if I can mayb add something to the copyright?
Can you please post a link to your site?
Uh, no, I can’t see your site unless you post a link to it here. Can you do that?
OK, I see the first rule in your CSS but I don’t see the second. Where is it?
It’s possible that the theme’s Custom CSS option does not recognize the
:afterpseudo-element as being valid CSS, in which case you might need to use a CSS plugin, like Jetpack or Custom CSS Manager.OK, it looks like the theme’s custom CSS editor changes the quote marks to escape codes, which is why it’s not showing up properly. Let me work on it a bit more.
Yeah, I don’t know how to get around that problem, it is definitely a problem with their custom CSS editor. You’ll have to try using a CSS plugin if you want to make the change using CSS.
Do you maybe have a code to center the languages in the widget area?
I can put 4 Widgets in there but i just want to have the multilanguage widget in the middle.
You can try adding this rule to the Additional Style field:
#multi_language_widget-5 { position: relative !important; float: none !important; left: 0 !important; margin-left: auto; margin-right: auto; display: table; }Thanks a lot! It worked.
But 😉
Is it possible to center the title, line and Flags as well?
Change the rule to add a text-align: center property:
#multi_language_widget-5 { position: relative !important; float: none !important; left: 0 !important; margin-left: auto; margin-right: auto; display: table; text-align: center; }
The topic ‘Edit Footer CSS’ is closed to new replies.
