Hi
Im experimenting with some layout options and am a little confused. Again excuse my lack of WordPress knowledge as this is my first site.
My preferred layout style (left aligned) for my blog page is: http://103.226.222.34/~elderkni/articles/
However when I remove the sidebar, it changes to http://103.226.222.34/~elderkni/testpage2/ (centred)
My plan is to still have a right side column with custom widget areas within it.
How can I retain my preferred layout style without the right sidebar?
Any ideas – Thanks
Hey Arran!
Probably the easiest solution is to use the right sidebar layout for the blog page, to hide the sidebar with css code and to extend the blog column width to 100% of the container width:
#top.page-id-22 #main .sidebar{ display: none !important; }
#top.page-id-22 .container .nine.units { width: 100% !important; }
You can insert the css code into the quick css field.
Regards,
Peter
Thanks Peter – Worked a treat
Can you help me with another layout request?
Im trying to put a coloured section or background colour on the same page: http://103.226.222.34/~elderkni/articles/
Ive been unable to add a coloured section into the 1/4 column on the right
I want grey box (#efeeee) from the top of the right sidebar down to just above the tweet widget.
I would prefer if the box had a 1px border as well.
Hope you can help.
Thanks Again
Hi!
Please firstly turn on Custom CSS field for ALB elements ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and give elements you would like to have a background color an unique class. Then add following code to Quick CSS
.your-custom-class { background-color: #efeeee; padding: 10px; border: 1px solid #888; }
Cheers!
Yigit