Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #568174

    How do you simply add text on the right hand side of the socket, Ive seen some previous posts and cannot get them to work. I still want the copyright text on the left.

    Also, if I add extra spaces within the copyright line (Left side of socket) they are ignored and just one space is used.

    Many thanks

    Chris

    #568247

    Hi chris16471!

    not sure what you mean. Can you send us precise link showing the elements in question please?

    Best regards,
    Andy

    #568524

    Hi,

    The bottom of the website where © Copyright – Kriesi.at is located in the left part of the socket. I need to enter some text of the right side of the socket on the same line as the copyright.

    #569096

    Hey!

    Are you using Footer menu? If not, please go to Appearance > Menus and add a new custom link with “#” as URL and enter your text as navigation label and then check “Enfold footer menu” under Menu settings. Then click “Screen options” on the top right corner and check “CSS classes” and then give your footer menu (custom text) a custom class (‘your-custom-class’ for example) then please add following code to Quick CSS in Enfold theme options under General Styling tab

    .your-custom-class { pointer-events: none !important; }

    Best regards,
    Yigit

    #569323

    Brilliant!

    That worked, thanks.

    Two more things!

    I did something to the footer.php file and I can see the dark text right at the bottom of the socket. How can I remove that?
    Can I reduce the text size and main footer area size (Padding is it?) in the footer where the widgets are?

    Thanks again

    Chris.

    #569326

    And another thing!!

    with your reply #569096

    With the text on the right hand side in the socket, I would like to put in several spaces like: T: 01202 123456 E: I (Email address hidden if logged out)

    But it only show one space like: T: 01202 123456 E: I (Email address hidden if logged out)

    Any ides?

    I’ve just edited this request, it looks like your support window doesn’t show several spaces either! If you login to my page via the previous support request credentials, you can see what I’m trying to do. (Thanks)

    Thanks

    Chris

    • This reply was modified 8 years, 2 months ago by chris16471.
    #569490

    Hey!

    1- I removed following from footer.php

    echo "<div class='sub_menu_socket'>";
    
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    
    wp_nav_menu($args);
    
    ?> Add your new div and text here. This line isn't in the footer so just add it  <?php
    
    echo "</div>";

    2- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #footer .widget {
        margin: 10px 0;
    }
    #footer {
        padding: 0;
    }

    3- You can use HTML in navigation label. Please try wrapping your text in span tag with custom class as following

    <span class="socket-phone">T: 01202 123456</span> <span class="socket-mail">E: I (Email address hidden if logged out) </span>

    then you can add following code to Quick CSS

    .socket-phone { margin-rigth: 10px; }

    Best regards,
    Yigit

    #569570

    Thats great, thanks

    I just don’t understand what you mean on the 3rd item.

    you can use HTML in navigation label. Please try wrapping your text in span tag with custom class as following

    ??

    #571070

    Hey!

    As you can see in the example i posted, you can use HTML and wrap your content into Span tag with custom class (as shown in the example exactly) and then you can use the second code i posted to adjust the space between phone number and email.

    Regards,
    Yigit

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