Need help with wordpress template

5 replies
  • WEB DESIGN
  • |
Hello,

I am using this wordpress template Indicate

and I want to remove this thin little line that is use as a border for the sidebar. I tried to go to the styesheet to remove it but nothing seems to work. Any ideas?




Any help would be GREATLY APPRECIATED. I been trying to change this for hours!
#template #wordpress
  • Profile picture of the author Tomos Wyn
    Open up style.css

    Search for #sidebar-primary and you should see this:

    Code:
    #sidebar-primary {
        overflow: hidden;
    	float: left;
        width: 210px;
        margin-left: -695px;
        border-right: 1px solid #E9EBE8;
        padding-right: 9px;
    }

    remove the border-right declaration so it looks like so:

    Code:
    #sidebar-primary {
        overflow: hidden;
    	float: left;
        width: 210px;
        margin-left: -695px;
        padding-right: 9px;
    }
    {{ DiscussionBoard.errors[6423427].message }}
    • Profile picture of the author vryannn
      Originally Posted by Tomos Wyn View Post

      Open up style.css

      Search for #sidebar-primary and you should see this:

      Code:
      #sidebar-primary {
          overflow: hidden;
      	float: left;
          width: 210px;
          margin-left: -695px;
          border-right: 1px solid #E9EBE8;
          padding-right: 9px;
      }

      remove the border-right declaration so it looks like so:

      Code:
      #sidebar-primary {
          overflow: hidden;
      	float: left;
          width: 210px;
          margin-left: -695px;
          padding-right: 9px;
      }
      Thank you for the quick reply. I removed it as you said but it's still there. Do you think it takes time for wordpress to update? Maybe I will see the changes in a couple hours?
      {{ DiscussionBoard.errors[6423468].message }}
      • Profile picture of the author stephaniek
        Originally Posted by vryannn View Post

        Thank you for the quick reply. I removed it as you said but it's still there. Do you think it takes time for wordpress to update? Maybe I will see the changes in a couple hours?
        No, not unless you have a cached version. Easiest way to check that is open up a fresh browser, like pull up Chrome if you've been working in FF... or you can just clear your cache and reload things

        But short answer no, it should be immediately visible. And Tomos Wyn's answer should have worked if there's not an extra stylesheet somewhere. Perhaps your edited file didn't save?

        Could also try this:

        border-right: 0px solid #E9EBE8;
        Signature

        Woman: How much do I owe you for the sketch?
        Picasso: 5000 francs.
        Woman: But it only took you 5 minutes!
        Picasso: No madam, it took me all my life.

        {{ DiscussionBoard.errors[6423801].message }}
        • Profile picture of the author vryannn
          Originally Posted by stephaniek View Post

          No, not unless you have a cached version. Easiest way to check that is open up a fresh browser, like pull up Chrome if you've been working in FF... or you can just clear your cache and reload things

          But short answer no, it should be immediately visible. And Tomos Wyn's answer should have worked if there's not an extra stylesheet somewhere. Perhaps your edited file didn't save?

          Could also try this:

          border-right: 0px solid #E9EBE8;
          I just checked again and now it works. I think it was because of the cached, even though I exed out the browser many times. Anyway, greatly appreciate you guys help!
          {{ DiscussionBoard.errors[6424396].message }}
  • Profile picture of the author Patrick
    If you're using a cache plugin, clear the cache...and refresh..
    {{ DiscussionBoard.errors[6423851].message }}

Trending Topics