Blogger: Labeling Sections on the Layout Page -
i've created responsive theme blogger. thus, since layout page shows reflection of actual layout, doesn't make use of media queries. lined vertically @ 100% width in admin area(which expected).
my question: there way can label sections somehow labels show on layout page, not when viewing site? when viewing layout page, there 8 sections "add gadget", , user has no way of knowing section what.
yes!!! can change , style (including title) of layout page (admin page) without effecting , style of actual site.
to answer question titles of layout page. example, have text widget , want change title of "text" actual title in layout not in actual site:
- find id of widget (in template) want address: "template" > "jump widget" > "text1".
all widgets listed in "jump widget" id's wish use based on 1 wish address.
above "/b:skin" use css style titles see fit (id's start "#" make sure add in front of widget id):
#layout #text1 .title { display:block !important; } #text1 .title { display:none; }
you can use same method change , style in layout section using code "#layout" before css codes. say, example, adjust height of header , automatically adjusted layout section (admin section) it's causing space between header section , blog section in layout.
do this:
#header { height:147px; } #layout #header { height: 0px !important; }
to adjust entire layout, width example, use:
body #layout { width: 700px !important; }
if don't see changes right away on layout page, after save template, click refresh button while on layout page.
edit: (snapshots of tested answer)
as can see title of widget shows on layout page not actual site:
Comments
Post a Comment