Buttons
-
-
-
-
-
The posts area between the sidebars can be made narrower, but does that mean you wish to widen the sidebars or what exactly? Are you talking about on the main page, or perhaps on categories pages such as On the Field: Sports or on static pages such as YHTS TEAM?
-
say make the margins look like this
http://fivethirtyeight.com/datalab/how-to-predict-mlb-records-from-early-results/
-
The site you reference does not have the left sidebar in the content area on the main page. This will remove your left sidebar and widen the content so that it looks similar to the site you reference.
.home #featured-cats { display: none; } .home .row #recent-posts.ninecol { width: 100% } -
Thanks as always. Also, the mobile version doesn’t have any of the settings. Best way to fix?
-
This also may be a better example of the width I’m going for
-
If you want to have the wide white space to the right of the content (my first thought was there is a mistake in their CSS) then use the following instead.
.home #featured-cats { display: none; } .home .row #recent-posts.ninecol { width: 80%; float: left; }You can adjust the width to whatever value you want.
If you want to get rid of the text beside your top featured image, add the following at the very bottom of your custom CSS.
#lead-story .posttitle, #lead-story .postmetadata, #lead-story p { display: none; }And then modify the first rule in the @media section (at the top) so that it looks like this:
#lead-story .item img,#lead-story a.lead-image { height:auto; max-width: 770px !important; width:770px } -
On what is seen on a mobile, what I see on your site is very similar to what I see on the site you referenced.
The theme you are using is a responsive design, which does not have a “mobile” version really, what happens is that the CSS and the theme is designed so that it presents the content in the best way possible no matter what the screen or browser window width is.
-
Ah, forgot one other thing to add. This gets rid of the grey background on the lead story when on smaller devices:
#lead-story { background: transparent; min-height: 190px; } -
The front page and lead story are good. Just wondering how to do it, so when you click on it, it has those dimensions. Just makes for a clearer read in my opinion.
-
Ah, now I understand. Give this a try. The original width of the content area was 64%. Add the following and you can play with the % maximum width.
.single .row .eightcol { max-width: 55% } -
Scratch that. Let’s do a media query and limit it to 768px in width or wider since that is where the sidebar moves to the bottom.
@media screen and (min-width: 768px) { .single .row .eightcol { max-width: 55% } } -
-
Certainly, add the following to change the widget title text to white.
.widgettitle { color: #FFFFFF; } -
awesome two more questions:
a) is there way to make the font larger
b) (unrelated to this widgets) is there a way to put a Facebook page and Twitter icon in the header? -
a) assuming you are talking about widget titles, change the .widgettitle bit I gave above to this, with the new selector, and adjust the font size as desired. It was 1em originally.
.wf-active aside h3.widgettitle { color: #FFFFFF; font-size: 1.1em; }b) Give your theme is a responsive design, I would suggest putting them into the top navigation. You would create links in a custom menu for the two, and the look at the source code and find those two menu items and get the unique menu class id, which would look something like this
menu-item-1115You would then do something like this
#menu-item-1115 { background: url("URL_OF_IMAGE") no-repeat scroll center center rgba(0, 0, 0, 0); } #menu-item-1115 a { color: rgba(0, 0, 0, 0); }You would create the two sets of rules (like above) with the the correct ID number and then upload your images to your media library and put the URLs of the images into the appropriated background declaration.
- The topic ‘Buttons’ is closed to new replies.