how can I change the width of the sidebar (I want to make the left column, the sidebar, a little narrower, and the right column, the content container, a little wider)?rw32b2a
I dont suggest to change ratio for supporting desktop screens (1024×768). Did you check your site in 1024×768? Your sidebar is already small enough (~320px). My suggestion is: Want responsive but not wide not for large screens?
If you still want to change it, here is solution:
add_action("firmasite_settings_close", "firmasite_custom_container_size"); function firmasite_custom_container_size(){ global $firmasite_settings; switch ($firmasite_settings["layout"]) { case "sidebar-content": $firmasite_settings["layout_primary_class"] = "col-xs-12 col-md-9 pull-right"; $firmasite_settings["layout_secondary_class"] = "col-xs-12 col-md-3"; break; case "content-sidebar": $firmasite_settings["layout_primary_class"] = "col-xs-12 col-md-9"; $firmasite_settings["layout_secondary_class"] = "col-xs-12 col-md-3"; break; } }Permalink