Padding to text on mobile

  • 15 February 2017
  • 1 reply
  • 3 views

Badge

When viewing my blog posts on mobile devices, the text hugs the edges of the screen. How can I apply a padding to each side of the text for all K2 items?

 

http://animasmarketing.com/blog

 

Thanks!

 

Tyler


1 reply

Badge +9

 Hi Sawneemountain,

 

In css.php do the following changes

 

@ line 610 update margin  for ID  #menuwrap

 

#menuwrap { margin: 5px 11px 0px 0px !important; }

 

@ line 411 add padding as below

 

 

/* Add padding for screen width lessthen 1280px*/

 

@media (max-width: 1280px){

#region3wrap .xtc-wrapperpad {

 

padding: 0px 20px 0px 20px; 

word-wrap: break-word;

}

}

 

Reply