Forums

Remove wrap border (6 posts)

  1. jmivaldi
    Member
    Posted 1 year ago #

    Hello! I've been trying to remove the thin border line from my blog background, but I can't seem to find the problem. I deleted the border action from the #wrap:

    #wrap {
    	margin: 5px auto;
    	padding: 0;
    	width: 980px;
    	border: 1px solid #ccc;
    	background: #fff;
    }

    I also tried putting the border action in between */ & /*, and still the thin line border doesn't go away. Am I doing this correctly?

    My blog is http://www.jeanelleechols.com/donaana

  2. r@keshD
    Member
    Posted 1 year ago #

    Modify it as

    #wrap {
    	margin: 5px auto;
    	padding: 0;
    	width: 980px;
    	border:none;
    	background: #fff;
    }
  3. jmivaldi
    Member
    Posted 1 year ago #

    still didn't work, but thanks for replying :)

  4. r@keshD
    Member
    Posted 1 year ago #

    it'll work..

    border is specified in other place also.
    you may give element style in your template file as

    <div style="border:none;" id="wrap">
    and it'll work

  5. marjiec
    Member
    Posted 1 year ago #

    The css you want to remove is in your embedded styles in your header.
    I think they look good though.

  6. jmivaldi
    Member
    Posted 1 year ago #

    It worked!!! Thank you sooo much :)

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags