Viewing 2 replies - 1 through 2 (of 2 total)
  • You have an error in your post.

    Below needs to have a unit pixels, or % could be used.

    
    <div style="padding-right:50">
    

    So like this:

    
    <div style="padding-right:50px">
    

    or even:

    
    <div style="padding-right:2%">
    

    Or better:

    
    <div style="padding:0.5em 2%">
    

    Above is top, bottom padding of 1/2 the height of inherited font size and left, right padding of 2% of container width.

    You could also fix the background from:

    
    <div style="background-color:#ffffff">
    

    to:

    
    <div style="background-color:inherit">
    

    or even better just

    
    <div>
    
    Thread Starter cobbletales

    (@cobbletales)

    Thank you so much! that worked;D

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘increase padding to single blog post’ is closed to new replies.