Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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.

    #1283015

    1) 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]

    #1283016

    3a) 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;
    }
    #1283553

    Hi 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,
    Rikard

    #1284110

    Hello 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.
    Roland

    #1284318

    Hi,

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.