Netsultants Active member Licensed customer Jan 1, 2011 #1 Happy New year everyone, I need to add disclaimer text to the footer. What is the proper way to do it and make it look good?
Happy New year everyone, I need to add disclaimer text to the footer. What is the proper way to do it and make it look good?
P Paul B XenForo moderator Staff member Licensed customer Jan 1, 2011 #2 Where exactly do you want to add it? In the footer bar, on the same row as the copyright text or lower? There was a thread yesterday asking how to add links so that might provide some help: http://xenforo.com/community/threads/how-to-create-a-box.9828/ In general though you can either edit the footer template and add your text inline either as text or a phrase. Or you can create a separate template and include it in the footer template. Upvote 0 Downvote
Where exactly do you want to add it? In the footer bar, on the same row as the copyright text or lower? There was a thread yesterday asking how to add links so that might provide some help: http://xenforo.com/community/threads/how-to-create-a-box.9828/ In general though you can either edit the footer template and add your text inline either as text or a phrase. Or you can create a separate template and include it in the footer template.
steven s Well-known member Licensed customer Jan 1, 2011 #3 I added mine to the Terms and Rules. Upvote 0 Downvote
Netsultants Active member Licensed customer Jan 1, 2011 #4 I was thinking right under the copyright row centered with padding. Upvote 0 Downvote
P Paul B XenForo moderator Staff member Licensed customer Jan 1, 2011 #5 You can add your content just above the second last </div> on the footer template. Code: <span class="helper"></span> </div> Your content here </div> </div> Upvote 0 Downvote
You can add your content just above the second last </div> on the footer template. Code: <span class="helper"></span> </div> Your content here </div> </div>
Netsultants Active member Licensed customer Jan 1, 2011 #6 Thanks Brogan, I actually added it here as I wanted it under the copyright div: <span class="helper"></span> </div> My Content </div> </div> -- Now when there is a sw update does it overwrite the change? Upvote 0 Downvote
Thanks Brogan, I actually added it here as I wanted it under the copyright div: <span class="helper"></span> </div> My Content </div> </div> -- Now when there is a sw update does it overwrite the change?
P Paul B XenForo moderator Staff member Licensed customer Jan 1, 2011 #7 Netsultants said: I actually added it here as I wanted it under the copyright div: Click to expand... I'm pretty sure that's the same as I posted Now when there is a sw update does it overwrite the change? Click to expand... If the footer template changes then you will need to revert and reapply your edit. Upvote 0 Downvote
Netsultants said: I actually added it here as I wanted it under the copyright div: Click to expand... I'm pretty sure that's the same as I posted Now when there is a sw update does it overwrite the change? Click to expand... If the footer template changes then you will need to revert and reapply your edit.
Netsultants Active member Licensed customer Jan 1, 2011 #8 lol You're right... That syntax is actually in two places in the template. ok, now if I wanted to add left and right padding, say 60px? Upvote 0 Downvote
lol You're right... That syntax is actually in two places in the template. ok, now if I wanted to add left and right padding, say 60px?
P Paul B XenForo moderator Staff member Licensed customer Jan 1, 2011 #9 If you want to do inline styling then something like this: Code: <div style="text-align: center; padding: 0 60px">Your content here</div> You could though move that css to EXTRA.css as a class and then use e.g. Code: <div class="my_disclaimer">Your content here</div> Upvote 0 Downvote
If you want to do inline styling then something like this: Code: <div style="text-align: center; padding: 0 60px">Your content here</div> You could though move that css to EXTRA.css as a class and then use e.g. Code: <div class="my_disclaimer">Your content here</div>
Netsultants Active member Licensed customer Jan 2, 2011 #10 Here is how I did it for reference: Code: <span class="helper"></span> </div> <div style="text-align: left; color: #646464; padding: 0 180px">my content</div> </div> </div> Thanks Upvote 0 Downvote
Here is how I did it for reference: Code: <span class="helper"></span> </div> <div style="text-align: left; color: #646464; padding: 0 180px">my content</div> </div> </div> Thanks
P Paul B XenForo moderator Staff member Licensed customer Jan 2, 2011 #11 Text automatically aligns left so you can remove that from your code if you wish Upvote 0 Downvote
Netsultants Active member Licensed customer Jan 2, 2011 #12 Good point.... Just making it clear for reference Upvote 0 Downvote