Jamie Gill
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Nav bar takes up too lines unnecessarilyHi,
Change
#access ul { font-size: 13px; list-style: none outside none; margin: 0 0 0 -0.8125em; padding-left: 0; }
to
#access ul { font-size: 13px; list-style: none outside none; margin: 0 0 0 -0.8125em; padding-left: 0; width: 990px; }
That should fix it.
Forum: Themes and Templates
In reply to: Image size for twenty eleven theme featured imageHi Euro,
Do you have a link to the page so I can take a look for you?
Forum: Themes and Templates
In reply to: Min-Max height css not working with wordpressNo problemo, glad it helped.
Forum: Themes and Templates
In reply to: Min-Max height css not working with wordpressAh ok,
Change –
.footer { background: url("images/footer_bg.gif") repeat scroll 0 0 transparent; color: #6C727B; font-size: 13px; height: 320px; margin: auto; width: 100% !important; }
Too
.footer { background: url("images/footer_bg.gif") repeat scroll 0 0 transparent; clear: both; color: #6C727B; font-size: 13px; height: 320px; margin: auto; width: 100% !important; }
I just added
clear: both;
so it takes into account the min-height/max-height css propertiesHope this helps
JForum: Themes and Templates
In reply to: Min-Max height css not working with wordpressWhat are you trying to achieve on the page exactly?
Forum: Themes and Templates
In reply to: How to add a single div from the editorThis isn’t possible from the Visual side, as far as I know if you wanted to do this it would have to be done in the HTML editor side.
No problem glad it helped.
Forum: Themes and Templates
In reply to: Cross browser compatibilityIf there is I would trade my house for it! We can only dream about this at the moment dude.
Hi Castor,
All I did to imply the fix was give the header image class a height rule and it worked fine :-
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
Change –
.header-image-link { margin-top: 0; }
To –
.header-image-link { height: 300px; margin-top: 0; }
Hope this helps
Cheers
JForum: Themes and Templates
In reply to: Theme Twenty eleven – Change size header textHi Luzi,
Go to Settings, then General. On the right change the site title too whatever you wish.
Many Thanks
JForum: Themes and Templates
In reply to: [Theme: toolbox] Remove sub-menuI think if its done through WordPress Menu’s feature. Go to Appearance and Menu’s and remove the children in the Primary Menu.
Forum: Themes and Templates
In reply to: Problems trying to overlap elementsHi rdbrotherton,
As Andrew said you need to apply the Position rule for the z-index to work. As I can see at the minute your logo has a z-index of -500, once a position element is placed in the css this works correctly.
hope this helps
Patch