Hello again community,

http://imageshack.us/a/img534/717/footerqnf.png

In views, I want to have some control over the appearance of the header. Right now, it defaults to placing different items in the header right next to each other. As you can see in the image, I would like the second item in the header to be aligned on the right side. How can this be done? Any help is appreciated. Thanks!

Comments

spovlot’s picture

You can use CSS to float the link to the right. You will add the CSS in your theme.

You can use Firebug or Chrome Inspector to see the HTML structure to target.

nikkwong’s picture

Can you direct me to somewhere where I can read about how to properly read the results from firebug?

http://img28.imageshack.us/img28/6866/lostja.png

I'm getting that and it's not terribly helpful when I'm still not CSS literate. Thank you!

spovlot’s picture

Well, I would suggest you look for some CSS tutorials. Perhaps http://www.codecademy.com/

In the case of this screenshot, you should be able to use something like this in your theme's CSS:

.view-id-classifieds .view-header a {
  float: right;
}
nikkwong’s picture

Great. Appreciate the help