Login     Sign up
A few questions - Changing menu text colour & quick share text/box size
John D (@johnd)
Join date: Oct 29th 2010
Community posts: 132
View Profile
Send Message

Hey,

I had a post about the quick share text size on the dashboard but I can't find it, I think switch posted a reply about where it is but I looked and couldnt get it.

I want to change the font size of "What's on your mind..." and the size of the "Share" button and the actual box itself, Id like it just to be one line so it doesnt take up so much space as I am adding a lot more to the dashboard.

Im also wanting to change the colour of the top navigation text (Home, Browse, Photos etc.) but not sure where I should change in the CSS.

Thanks :)

173 months ago
werewolves69 (@werewolves69)
Join date: Oct 27th 2010
Community posts: 14
View Profile
Send Message

in themes folder look for page.css

topbar a, #topbar a:visited {

color: #E21D20;
}

should be the place to change the color

173 months ago
John D (@johnd)
Join date: Oct 29th 2010
Community posts: 132
View Profile
Send Message

Great, thanks!

Wasn't sure which to change :)

Got that sorted now.

Just 1 more question for the dashboard, right now I have custom text in the main column but I would like to have it in the left sidebar with a header just like the "Account" "Administration" etc. and the contest to be my own custom text.

I have it in the dashboard already using :

$lblocks[] = array('title' => t('Upcoming Events in the North West'),'content'=>'<div><b>01/01/2010 - Tester</b> <br>
test description<br />
<b>02/01/2010 - Tester</b> <br>
test description<br>
<b>03/01/2010 - Tester</b> <br>
test description<br>
<b>04/01/2010 - Tester</b> <br>
test description
</div>');

But I want to move this to the left column because I want the newsfeed to be higher on the page but still have this visible without scrolling too much.

I think thats my homepage/dashboard finished once I do this :)

173 months ago
AL (@switch48)
Join date: Sep 1st 2010
Community posts: 450
View Profile
Send Message

Hey John,

Do you mean like this...

[img]http://indexjunkie.com/images/65160028075167813477.png[/img]

:)

173 months ago
John D (@johnd)
Join date: Oct 29th 2010
Community posts: 132
View Profile
Send Message

Hey switch :)

Yeah thats what I'm trying to do :)

Been working on it on my computer rather than live now, hoping to get the main things finished up today :)

Thanks again!

173 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

[code]
block(array('title' => t('Upcoming Events in the North West'),'content'=>'<div><b>01/01/2010 - Tester</b> <br>
test description<br />
<b>02/01/2010 - Tester</b> <br>
test description<br>
<b>03/01/2010 - Tester</b> <br>
test description<br>
<b>04/01/2010 - Tester</b> <br>
test description
</div>'));
[/code]

in dashboard.module.php function index

above

[code]
block(
friends_birthday()
);
[/code]

if you want it like the example

PS where is the classifieds module comming from ?

173 months ago