llholliman Posted February 4, 2020 Share Posted February 4, 2020 Hi, I’m a total newbie and know almost nothing about coding. I’m trying to customize a wordpress site. My theme does not allow much editing with the footer, so I have three links all squished together. I have tried a couple of options for adding space between these three links to no avail. I’m pasting the code below. If anyone can advise me on how to edit the code so that I can have a space between these links, I would be very appreciative. Please forgive my lack of expertise. <?php ?> <div class="wrapper"> <span class="footer-copyright"> <?php printf( esc_html__( 'Theme: %1$s by %2$s. ', 'reblog' ), 'Reblog', '<a href="' . esc_url( 'http://moralthemes.com/' ) . '">Moral Themes</a>' ); if ( function_exists( 'the_privacy_policy_link' ) ) { the_privacy_policy_link(); } ?> <a href ="http://localhost:8888/happygohygge/terms-conditions/">Terms and Conditions.</a> </span><!-- .footer-copyright --> Quote Link to comment https://forums.phpfreaks.com/topic/309977-help-with-spacing-in-footer/ Share on other sites More sharing options...
requinix Posted February 5, 2020 Share Posted February 5, 2020 This is something that should be solved on the webpage itself, not from within PHP. Specifically, solved with CSS. Which is why I've moved this thread into the CSS forum. I don't suppose this website is publicly viewable, is it? That would make it much easier to give suggestions on what to do... Screenshot of what it looks like? Do you have any custom CSS already applied to the site? Quote Link to comment https://forums.phpfreaks.com/topic/309977-help-with-spacing-in-footer/#findComment-1574000 Share on other sites More sharing options...
llholliman Posted February 5, 2020 Author Share Posted February 5, 2020 I am currently working on MAMP. I have put in some custom CSS. Thanks for your help! Quote Link to comment https://forums.phpfreaks.com/topic/309977-help-with-spacing-in-footer/#findComment-1574039 Share on other sites More sharing options...
requinix Posted February 5, 2020 Share Posted February 5, 2020 If you've already added some custom CSS for stuff then you might as well add some more custom CSS to deal with this... Quote Link to comment https://forums.phpfreaks.com/topic/309977-help-with-spacing-in-footer/#findComment-1574042 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.