Changing the vertical line on front page

English Style Support
Davenrothz
Newbie
Newbie
Beiträge: 4
Registriert: Fr 12. Sep 2008, 18:50
phpbb.com: davenrothz

Changing the vertical line on front page

Beitrag von Davenrothz »

Site: www.CareerProfessionals.info

How does one change the vertical line, or get rid of it altogether?

Once I changed the width of it, this vertical bar appeared on the site. I've tried removing certain GIF's and other files to identify what file it was, but no luck so far!

I'm new and not very saavy with forums at all, so please be gentle!
Benutzeravatar
Marc
Administrator
Administrator
Beiträge: 620
Registriert: Di 2. Sep 2008, 23:48
phpbb.com: Marc
Wohnort: Munich

Re: Changing the vertical line on front page

Beitrag von Marc »

What width should the board have? If you tell me the width you want, I will modify the images and css and send you a customized version of proFormell.

Regards, Marc
Bild
Davenrothz
Newbie
Newbie
Beiträge: 4
Registriert: Fr 12. Sep 2008, 18:50
phpbb.com: davenrothz

Re: Changing the vertical line on front page

Beitrag von Davenrothz »

Oh, I can edit the CSS files and make all the modifications... I'm not that lazy! If you just tell me where to go and what line to remove, I'll photoshop it or do whatever I need to!

here's the bar I want removed from http://www.CareerProfessionals.info:

Bild

But if it's too complicated for me, I would be more than happy to receive those files :D

Thanks!
Benutzeravatar
Marc
Administrator
Administrator
Beiträge: 620
Registriert: Di 2. Sep 2008, 23:48
phpbb.com: Marc
Wohnort: Munich

Re: Changing the vertical line on front page

Beitrag von Marc »

Well, just modify the bg_body.gif in the proFormell/theme/images folder to reflect your desired width.
The width of the outside border can be controlled with this part of the colours.css:

Code: Alles auswählen

.outside {
   margin: 0 auto;
   width : 950px;
   }
The width of the forum itself is controlled by this part in the common.css:

Code: Alles auswählen

#wrap {
	padding: 0 20px;
	width: 862px;
	margin: 0 auto;
	min-width: 650px;
}
But you probably already knew that. ;)
Bild
Davenrothz
Newbie
Newbie
Beiträge: 4
Registriert: Fr 12. Sep 2008, 18:50
phpbb.com: davenrothz

Re: Changing the vertical line on front page

Beitrag von Davenrothz »

Believe it or not, I actually knew that! scary thought :P

This is what I have I have in my colours.css & common.css already (and refreshed all my stuff as well in ACP):

Code: Alles auswählen

.outside {
   margin: 0 auto;
   width : 1200px;
   }
I then have this in my common:

Code: Alles auswählen

#wrap {
	padding: 0 20px;
	margin: 0 auto;
}
The width of the forum is perfect and I finally like the layout. However, that pesky dark vertical bar appears in the background. I thought it might've been a GIF/PNG/JPG somewhere in the images, but I couldn't find one that seemed to match it. If I had found the file, I was simply going to create a transparant replacement image with the size of 1 pixel by 1 pixel, that way it doesn't show up anymore.... but of course I couldn't find it. I scoured the CSS files in a meager attempt to make sense of it all, but alas I could not.

Am I missing something?
Davenrothz
Newbie
Newbie
Beiträge: 4
Registriert: Fr 12. Sep 2008, 18:50
phpbb.com: davenrothz

Re: Changing the vertical line on front page

Beitrag von Davenrothz »

I changed the GIF from 950x8 to 1200x10, but that pesky dark bar is still there.
Benutzeravatar
Marc
Administrator
Administrator
Beiträge: 620
Registriert: Di 2. Sep 2008, 23:48
phpbb.com: Marc
Wohnort: Munich

Re: Changing the vertical line on front page

Beitrag von Marc »

Try the following:

Open common.css and find:

Code: Alles auswählen

    #wrap {
       padding: 0 20px;
       margin: 0 auto;
    }
And replace it with this:

Code: Alles auswählen

    #wrap {
       padding: 0 20px;
       width: 1175px;
       margin: 0 auto;
       min-width: 650px;
    }
Bild
phpbb3user
Newbie
Newbie
Beiträge: 3
Registriert: Mi 17. Sep 2008, 16:14

Re: Changing the vertical line on front page

Beitrag von phpbb3user »

ScreenShot003.jpg
Hi Mark,

I'd like to change the frame width to 1px (1line) of the main display topic. Can you show me how ?

Thanks
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
Benutzeravatar
Marc
Administrator
Administrator
Beiträge: 620
Registriert: Di 2. Sep 2008, 23:48
phpbb.com: Marc
Wohnort: Munich

Re: Changing the vertical line on front page

Beitrag von Marc »

Try this:

Open common.css
Find:

Code: Alles auswählen

.forabg {
	background: #b1b1b1 none repeat-x 0 0;
	margin-bottom: 4px;
	padding: 0 5px;
	clear: both;
}

.forumbg {
	background: #ebebeb none repeat-x 0 0;
	margin-bottom: 4px;
	padding: 0 5px;
	clear: both;
}
Replace with:

Code: Alles auswählen

.forabg {
	background: #b1b1b1 none repeat-x 0 0;
	margin-bottom: 1px;
	padding: 0 1px;
	clear: both;
}

.forumbg {
	background: #ebebeb none repeat-x 0 0;
	margin-bottom: 1px;
	padding: 0 1px;
	clear: both;
}
Bild
phpbb3user
Newbie
Newbie
Beiträge: 3
Registriert: Mi 17. Sep 2008, 16:14

Re: Changing the vertical line on front page

Beitrag von phpbb3user »

After change common.css according your code. Here is result
ScreenShot001.jpg
How to change horiontal line to 1px ?

Again, Thank for your response
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.