Lines in page

RBlack305
RBlack305's picture

Joined: 2012-09-02
Posts: 5
Posted: Tue, 2012-09-11 01:45

Ok, Thank you Floridave for helping me with my last question.

I have yet another customizing question I am hoping you can help me with.

This one has to do with getting rid of the lines on the page. I want the page to be blank except for he script itself and right now there are what looks like (table) border lines and (hr) lines.

Can you tell me how to get rid of them?

http://www.ryanslinks.com/gallery/

Thank You!

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2012-09-11 02:13

#g-footer {
remove the border top deceleration.

Some place you have

th, td {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #CCCCCC;
    border-image: none;
    border-style: none none solid;
    border-width: medium medium 1px;
    padding: 0.5em;
}

for your header content
change:
border-width: medium medium 1px;
to
border-width: medium medium 0;
then
[code]#g-banner {
background-color: #FFFFFF;
border-bottom: 1px solid #CCCCCC;
min-height: 5em;
padding: 1em 20px;
position: relative;
}[/code
remove border-bottom: 1px solid #CCCCCC;

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
RBlack305
RBlack305's picture

Joined: 2012-09-02
Posts: 5
Posted: Tue, 2012-09-11 02:43
Quote:
Some place you have

th, td {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #CCCCCC;
    border-image: none;
    border-style: none none solid;
    border-width: medium medium 1px;
    padding: 0.5em;
}

for your header content
change:
border-width: medium medium 1px;
to
border-width: medium medium 0;

I looked for this but I cannot find it. The closest thing starts on line: 295 under tables at line 310 I see this:

th,
td {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: .5em;
}

td {
  vertical-align: top;
}

Might that be what you are refering to?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Wed, 2012-09-12 04:34

don't know,just going by ff and the fed tool to assist.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
RBlack305
RBlack305's picture

Joined: 2012-09-02
Posts: 5
Posted: Wed, 2012-09-12 06:38

Well thank you for your help. It may seems simple to you but I would never have figured it out.