-
AuthorPosts
-
February 23, 2021 at 6:54 am #1282981
Hello,
I would like to change the height of my footer. Could you please help me? I know how to add CSS but it doesn’t seem to be changing anything on the front end.
Secondly, I would like to change the size of my font in the footer widget areas. Please tell me how to do it.
Lastly, I would like to use a socket below my footer but I don’t want the “themes by Kriesi” and “WordPress” text to show. Is that possible?
Please reply at (Email address hidden if logged out)
Thank you.
February 23, 2021 at 10:52 am #12830151) well we had to be a bit more precise here: we got the id: #footer ( that is the place where the widgets are in ) and the footer with id : #socket.
What do you like to have a bigger height?
2) What size do you like to increase – the heading text or the widget content text or both etc.
3) insert to that options input field at the end:[nolink]
February 23, 2021 at 10:54 am #12830163a) if you like to have your own “backlink” you can insert this to your child-theme functions.php:
/** new backlink in copyright insertion*/ function new_nolink(){ $kriesi_at_backlink = "<a href='https://your-wanted-backlink-path'>Your Backlink Text</a>"; return $kriesi_at_backlink; } add_filter("kriesi_backlink","new_nolink");
alternative the newest way :
add_filter( 'kriesi_backlink', 'my_own_backlink', 10, 1); function my_own_backlink($link){ $theme_string = 'Custom Backlink Text'; $backlink_url = 'Backlink URL'; $no = "rel='nofollow'"; $link = " - <a {$no} href='{$backlink_url}' target='_blank'>{$theme_string}</a>"; return $link; }
February 25, 2021 at 2:56 am #1283553Hi rolanddon,
Please try to specify the changes you would like to make a bit further, you can use the suggestions posted by @guenni007 for removing or editing the socket backlink.
Best regards,
RikardFebruary 27, 2021 at 2:20 pm #1284110Hello Guenni007,
1) I want to reduce the height of my footer, but I don’t know how to do it.
2) I want to change the size of both heading text or the widget content text in the footer.
3) I don’t understand “insert to that options input field at the end: [nolink]”, can you explain it?Please reply at (Email address hidden if logged out)
Thank you.
RolandMarch 1, 2021 at 5:22 am #1284318Hi,
Please try the following in Quick CSS under Enfold->General Styling:
#footer .widget { margin: 0; } #footer { padding: 15px 0 0 0; } #footer .widget .widgettitle { font-size: 16px; } #footer .widget p { font-size: 12px; }
Add [nolink] to the copyright field under Enfold->Footer.
Best regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.