Moving projects to the right in the index menu??

miggaslice / 2013-03-04 03:11:55   

Is there a way to move the projects list to the right in the index frame??

michaelahernandez.com/

arsondpi / 2013-03-04 06:18:58   

Click Admin->Assets->Theme, style.css, find line 57 and add t text-align attribute

  1. #index ul {
  2.     margin: 0;
  3.     text-align: right;
  4. }
danalive / 2013-03-04 06:32:37   

Hi arsondpi,

I happened across this topic with the same issue.

In the following line?
/* styling the index */
#index ul { list-style: none; margin: 0; text-align: right; }

Does that look correct? All the index items: sections, projects etc are not moving.

arsondpi / 2013-03-04 06:35:37   

Show us your page...

danalive / 2013-03-04 06:39:33   

danko.com.au thanks :)

arsondpi / 2013-03-04 06:47:09   

The text-align: right; attribute is missing from the #index ul selector.

danalive / 2013-03-04 06:55:54   

Is this separate to the line 57 code you referred to above?

arsondpi / 2013-03-04 06:59:08   

No it's not,line 57 is right - I just don't see the text-align: right; attribute in your style.css.
Check it out yourself: indexhibit.org/ndxzsite/default/…

danalive / 2013-03-04 08:21:22   

Thanks for your help. I'm not sure why it's not taking, but I'll persist :) Cheers.

arsondpi / 2013-03-04 10:39:45   

As I said, if you look at the source code of your style.css file, the text-align:right; attribute is not saved in your style.css
Verify that you're clicking on the disk (save) icon after the css change if you're doing the change from the backend or verify that you're reuploading/replacing the style.css if you're doing it via ftp/code editor application.

danalive / 2013-03-04 20:11:08   

Hi arsondpi,

danko.com.au/ndxzsite/default/…

Is this the correct CSS file? If so, it has the correct attribute, no?

arsondpi / 2013-03-04 21:31:03   

Danko look at your source code.

For some reason (you probably tweaked your index.php) all your css files come from the indexhibit.org site and not your domain name.
You edited the css file correctly... It's other stuff that's wrong...

  1. <link rel='alternate' type='application/rss+xml' title='RSS' href='indexhibit.org/xml/' /…;
  2. <link rel='stylesheet' href='indexhibit.org/ndxzsite/default/…;
  3. <link rel='stylesheet' href='indexhibit.org/ndxzsite/default/…;
  4. <link rel='stylesheet' href='indexhibit.org/ndxzsite/default/…;

;-)

danalive / 2013-03-05 09:09:38   

Ahh! Thanks arsondpi! I appreciate your time.

This thread has been closed, thank you.