• Resolved Vedavaner

    (@vedavaner)


    Hello,

    Please providing me with CSS code that will help do the following:

    1) Move the second footer text to further right,so it doesn’t line too close to the footer text on the left.

    2) I want to remove all the lines on post and pages so the website can look nice and clean.

    Thank you for all of your help.

    Vanessa Rathsvongsack

Viewing 7 replies - 1 through 7 (of 7 total)
  • hi vanessa, could you provide any link to the website you want to edit?

    Thread Starter Vedavaner

    (@vedavaner)

    Hi there,

    Below is my website that need to be edited.
    https://www.makemoneyonlinehomebase.com/

    All lines on side bar need to be removed. I also would like to move the second footer to further right so the text is not too close to the left footer.

    Thank you for your help.

    Vanessa Rathsvongsack

    Hi Vanessa,

    In style.css, delete the line indicated below to remove the lines from the sidebar:

    .widget h3 {
      color: #39302d;
      border: 1px double #e8e4e3; /* Delete this line. */
      border-width: 1px 0 4px;
      padding: .618em 0;
      font-family: "Open Sans", sans-serif;
    }

    For the footer, in layout.css you should set a width property on .col-left and/or .col-right. For example:

    .col-left {
      float: left;
      width: 30%;
    }
    
    .col-right {
      float: right;
      width: 30%;
    }

    Play with the percentages until you get it looking how you’d like.

    Cheers.

    Thread Starter Vedavaner

    (@vedavaner)

    Hi Donna,

    I click on Editor of WordPress Dashboard and paste
    /* Delete this line. */ and placed it next to border: 1px double #e8e4e3; of the following class:

    .widget h3 {
    color: #39302d;
    border: 1px double #e8e4e3;
    border-width: 1px 0 4px;
    padding: .618em 0;
    font-family: “Open Sans”, sans-serif;
    }

    Somehow,all lines on the side bar are still there. I’m not sure why is not delete out the lines. Please help.

    Thank you,

    Vanessa

    Hi vanessa, as Donna said, you should remove the line [not paste it], here is your code now:

    .widget h3 {
    color: #39302d;
    border: 1px double #e8e4e3;
    border-width: 1px 0 4px;
    padding: .618em 0;
    font-family: "Open Sans", sans-serif;
    }

    delete the lines and it should be like

    .widget h3 {
    color: #39302d;
    
    border-width: 1px 0 4px;
    padding: .618em 0;
    font-family: "Open Sans", sans-serif;
    }

    this should remove all the lines between your sidebar widgets.
    Remember to back up before editing

    Thread Starter Vedavaner

    (@vedavaner)

    Hello All,

    I did it. All lines on side bar are now gone. Your guys are awesome!

    Thank you for all of your help.

    Vanessa Rathsvongsack

    you are welcome. please mark this topic as resolved. thank you.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to move the second footer text to further right?’ is closed to new replies.