How to hide or eliminate the logos on Albums?

maclancer

Joined: 2012-08-01
Posts: 21
Posted: Sun, 2012-08-12 13:29

How do I hide or eliminate the two marked images on the picture?

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Sun, 2012-08-12 18:50

With a change to the css. Will be hard to tell you specifically without a url.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Tue, 2012-08-14 17:05

I can't figure it out how to hide or delete the line on the titles of albums:

http://www.elegantxpressions.net/beta/portfolio/index.php

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 18:25

Add the display none. to your css.
From:

#g-content #g-album-grid .g-item h2 
    margin: 5px 0;
}

to

#g-content #g-album-grid .g-item h2 {
    display: none;
    margin: 5px 0;
}

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Tue, 2012-08-14 22:44

I did what your suggested and the titles of the albums disappear as well. It is difficult to remove just the line on the titles?

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 23:01

Oh OK I thought you want it all gone.
Then remove

#g-content #g-album-grid .g-album h2 span.g-album {
some more stuff here

}

from your css

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Tue, 2012-08-14 23:13

Still does not remove the line :(

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 23:22

Ad you need to fix this :

h2 {
	text-transform: uppercase;
	padding: 0 0 0px 0;
	margin: 0 0 10px 0;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 1.4;
	background: transparent url('http://www.elegantxpressions.net/beta/portfolio/themes/wind/css/../../../../img/dash.png') left bottom no-repeat;
	}

You have some dash.png image for the H2 that is causing the dash.

Are you sure you have some tool to see live edits with the css in your browser like:
https://addons.mozilla.org/en-US/firefox/addon/web-developer/

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 23:25

Oh and another thing. You should not be editing the wind theme. You should create a new theme so you don't much up your theme when you upgrade.
http://codex.gallery2.org/Gallery3:Tutorials:Themes#Creating_your_own_theme

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Tue, 2012-08-14 23:29

Thank you so much Dave, that fixed the issue with the line. It is a way to centralize the titles of the album?

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 23:31

Are you sure you have some tool to see live edits with the css in your browser like:
https://addons.mozilla.org/en-US/firefox/addon/web-developer/

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Tue, 2012-08-14 23:33

Dave, I don't need to update the gallery. This is something that will be just a one time project. It is for my girl and I am doing for free. She does not need to upgrade the gallery, if it's working fine for her, why bother? lol... ;)

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Tue, 2012-08-14 23:34

Yes, I have that in firefox.

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 23:45
Quote:
why bother?

Security issues and other bug fixes perhaps.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25945
Posted: Tue, 2012-08-14 23:54

Add
#g-valign {width: 140px;} to your themes css

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
maclancer

Joined: 2012-08-01
Posts: 21
Posted: Wed, 2012-08-15 12:12

Thank you Dave, I really appreciate it your help!!!! :)

Login or register to post comments