Featured Row Tweaks

Support Area Forums Bottega Featured Row Tweaks

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: http://www.cheerdropcafe.com
  • Author
    Posts
  • #28788
    Jeffrey Satkowski
    Participant

    Hello,

    Following up on this post from a while ago, I added that code to the advanced tab for the theme options and it worked fine. What would the color codes be for green or pink, rather than white?

    Also, is it possible to have the text centered in the boxes?

    Thanks!

    #28816
    Bill Robbins
    Moderator

    Good Morning Jeffrey,

    It is possible to change the background color. In this snippet that you added to your custom CSS:

    
    .boxcaption { 
    	color: #000;
    	background: #fff; 
    	background: rgba(255, 255, 255, 0.8);
    }
    

    The last line background: rgba(255, 255, 255, 0.8); controls the background color. You can replace the rgba(255, 255, 255, 0.8) with another RGBA color. There is an online one at https://developer.mozilla.org/en-US/docs/Web/CSS/Tools/ColorPicker_Tool that you can use to find the right color.

    The first three number, 255, 255, and 255 in our example set the hue. The last number 0.8 sets the opacity on a scale of 0 (transparent) to 1.0 (completely opaque).

    While it is possible to set the captions to center align, the alignment will only stick for part of the caption. I’m not entirely certain why, but it looks like you’ll have to stick with the text left aligned.

    Take care,
    Bill

    #28892
    Jeffrey Satkowski
    Participant

    Great, thank you again!

    #28893
    Bill Robbins
    Moderator

    Anytime 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Featured Row Tweaks’ is closed to new replies.