thomascarl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress pagination showing same content on page 2Thanks!
Chrismawa, how did you fix this? Mine was working until I installed a couple of plugins and now all I see is the loading screen.
I really like this slider and I’d hate to have to use a different one.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerI’m trying to get the main
<li>s to display in 3 columns.Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerThat’s bizarre, I kept seeing the updated one on my other machines.
Try this one http://jsfiddle.net/4GMp7/16/.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerProbably an old version, I checked it in a different browser and it’s showing up there as updated. You may have to hit refresh a few times or CTRL + F5.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerSame link, should update on refresh.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerI just updated it, feel like I’m getting closer.
**EDIT – left out first part of my sentence.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerHere’s an example of what I’m trying to do:
Trying to make the main bullets uppercase too, don’t think I’m selecting them properly.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerTried it here:
#nav_menu-3 ul{ list-style:none; padding-left:0; max-width:250px; float:left; border:10px solid #333; }Shows up on the page.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerThanks Andrew, but it’s not working.
Here’s the code I tried to use:
#nav_menu-3 ul{ list-style:none; padding-left:0; max-width:250px; float:left; } #nav_menu-3 ul li{ font-size:18px; text-transform:uppercase; font-family:Georgia, "Times New Roman", Times, serif; float:left; } #nav_menu-3 ul li ul{ float:none; } #nav_menu-3 ul li ul li{ font-size:14px; text-transform:none; font-family:Arial, Helvetica, sans-serif; float:none; }Does there need to be a max-height set somewhere? I assume that they are all floating left but there’s not set height to their container. I tried setting one but it’s not working.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerThey are the same UL. Not sure if it makes any difference, but there’s actually 6 of them.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footerI’m trying to get the lists to show in 2-3 columns, I was trying to float them.
This is how it’s displaying now:
Item 1 -sub item -sub item Item 2 -sub item -sub item Item 3 -sub item -sub itemThis is what I’m going for:
Item 1 Item 2 Item 3 -sub item -sub item -sub item -sub item -sub item -sub itemSome of the sub items have subs too.
Forum: Themes and Templates
In reply to: [TwentyEleven] Styling a duplicate Primary Nav in the footer#nav_menu-3 { } #nav_menu-3 ul{ list-style:none; float:left; max-width:250px; padding-left:0; } #nav_menu-3 ul li{ font-size:18px; text-transform:uppercase; font-family:Georgia, "Times New Roman", Times, serif; } #nav_menu-3 ul li ul li{ font-size:14px; text-transform:none; font-family:Arial, Helvetica, sans-serif; }